Example usage for Java android.opengl GLSurfaceView fields, constructors, methods, implement or subclass
The text is from its open source code.
int | RENDERMODE_WHEN_DIRTY The renderer only renders when the surface is created, or when #requestRender is called. |
int | RENDERMODE_CONTINUOUSLY The renderer is called continuously to re-render the scene. |
GLSurfaceView(Context context) Standard View constructor. |
SurfaceHolder | getHolder() Return the SurfaceHolder providing access and control over this SurfaceView's underlying surface. |
void | queueEvent(Runnable r) Queue a runnable to be run on the GL rendering thread. |
void | requestRender() Request that the renderer render a frame. |
void | setRenderMode(int renderMode) Set the rendering mode. |