From 620745aae81afe5647029c3d81b04cf4328e8377 Mon Sep 17 00:00:00 2001
From: Kenneth Russel Provides a virtual machine- and operating system-independent
mechanism for creating {@link GLDrawable}s. The {@link javax.media.opengl.GLCapabilities} objects passed in to the
- various factory methods are used as a hint for the properties of
- the returned drawable. The default capabilities selection
- algorithm (equivalent to passing in a null {@link
+ The {@link javax.media.opengl.GLCapabilities} objects passed
+ in to the various factory methods are used as a hint for the
+ properties of the returned drawable. The default capabilities
+ selection algorithm (equivalent to passing in a null {@link
GLCapabilitiesChooser}) is described in {@link
DefaultGLCapabilitiesChooser}. Sophisticated applications needing
to change the selection algorithm may pass in their own {@link
GLCapabilitiesChooser} which can select from the available pixel
- formats.
Because of the multithreaded nature of the Java platform's window system toolkit, it is typically not possible to immediately @@ -186,6 +188,7 @@ public abstract class GLDrawableFactory { * Creates a GLPbuffer with the given capabilites and dimensions. */ public abstract GLPbuffer createGLPbuffer(GLCapabilities capabilities, + GLCapabilitiesChooser chooser, int initialWidth, int initialHeight, GLContext shareWith); diff --git a/src/classes/javax/media/opengl/GLJPanel.java b/src/classes/javax/media/opengl/GLJPanel.java index cce43badf..ad5a7f769 100644 --- a/src/classes/javax/media/opengl/GLJPanel.java +++ b/src/classes/javax/media/opengl/GLJPanel.java @@ -564,6 +564,7 @@ public class GLJPanel extends JPanel implements GLAutoDrawable { } try { pbuffer = GLDrawableFactory.getFactory().createGLPbuffer(offscreenCaps, + null, pbufferWidth, pbufferHeight, shareWith); -- cgit v1.2.3