public interface CustomGLEventListener extends GLEventListener
GLEventListener interface
supporting more fine grained control over the implementation.| Modifier and Type | Field and Description |
|---|---|
static int |
DISPLAY_DONTCLEAR
display flag: Do not clear any target buffer, e.g. |
static int |
DISPLAY_REPEAT
display flag: Repeat last produced image. |
| Modifier and Type | Method and Description |
|---|---|
void |
display(GLAutoDrawable drawable,
int flags)
Extended
display method,
allowing to pass a display flag, e.g. |
display, dispose, init, reshapestatic final int DISPLAY_REPEAT
display 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 the current matrix.
static final int DISPLAY_DONTCLEAR
display flag: Do not clear any target buffer, e.g. color-, depth- or stencil-buffers.void display(GLAutoDrawable drawable, int flags)
display method,
allowing to pass a display flag, e.g. DISPLAY_REPEAT or DISPLAY_DONTCLEAR.
Method is usually called by a custom rendering loop, e.g. for manual stereo rendering or the like.
drawable - flags - Copyright 2010 JogAmp Community.