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 int
display flag
: Do not clear any target buffer, e.g.static final int
display flag
: Repeat last produced image. -
Method Summary
Modifier and TypeMethodDescriptionvoid
display
(GLAutoDrawable drawable, int flags) Extendeddisplay
method, 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
display
call, 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
Extendeddisplay
method, allowing to pass a display flag, e.g.DISPLAY_REPEAT
orDISPLAY_DONTCLEAR
.Method is usually called by a custom rendering loop, e.g. for manual stereo rendering or the like.
- Parameters:
drawable
-flags
-
-