Package com.jogamp.opengl.util
Interface CustomGLEventListener
- All Superinterfaces:
EventListener,GLEventListener
- All Known Subinterfaces:
StereoGLEventListener
Extended
GLEventListener interface
supporting more fine grained control over the implementation.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intdisplay flag: Do not clear any target buffer, e.g.static final intdisplay flag: Repeat last produced image. -
Method Summary
Modifier and TypeMethodDescriptionvoiddisplay(GLAutoDrawable drawable, int flags) Extendeddisplaymethod, allowing to pass a display flag, e.g.Methods inherited from interface com.jogamp.opengl.GLEventListener
display, dispose, init, reshape
-
Field Details
-
DISPLAY_REPEAT
static final int DISPLAY_REPEATdisplay flag: Repeat last produced image.While a repeated frame shall produce the same artifacts as the last
displaycall, e.g. not change animated objects, it shall reflect thecurrent matrix.- See Also:
-
DISPLAY_DONTCLEAR
static final int DISPLAY_DONTCLEARdisplay flag: Do not clear any target buffer, e.g. color-, depth- or stencil-buffers.- See Also:
-
-
Method Details
-
display
Extendeddisplaymethod, allowing to pass a display flag, e.g.DISPLAY_REPEATorDISPLAY_DONTCLEAR.Method is usually called by a custom rendering loop, e.g. for manual stereo rendering or the like.
- Parameters:
drawable-flags-
-