JOGL
v2.6.0-rc-20250706
JOGL, High-Performance Graphics Binding for Java (public API).
DebugGLES2.java
Go to the documentation of this file.
1
package
com.jogamp.opengl;
2
3
/**
4
* <p>
5
* Composable pipeline which wraps an underlying {@link GL} implementation,
6
* providing error checking after each OpenGL method call. If an error occurs,
7
* causes a {@link GLException} to be thrown at exactly the point of failure.
8
* </p>
9
* <p>
10
* Sample code which installs this pipeline, manual:
11
* <pre>
12
* gl = drawable.setGL(new DebugGL(drawable.getGL()));
13
* </pre>
14
* For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
15
* </p>
16
*/
17
public
class
DebugGLES2
extends
DebugGLES3
{
18
public
DebugGLES2
(
final
GLES2
downstream) {
19
super((
GLES3
)downstream);
20
}
21
}
com.jogamp.opengl.DebugGLES2
Definition:
DebugGLES2.java:17
com.jogamp.opengl.DebugGLES2.DebugGLES2
DebugGLES2(final GLES2 downstream)
Definition:
DebugGLES2.java:18
com.jogamp.opengl.DebugGLES3
Definition:
DebugGLES3.java:25
com.jogamp.opengl.GLES2
Definition:
GLES2.java:25
com.jogamp.opengl.GLES3
Definition:
GLES3.java:25
src
jogl
classes
com
jogamp
opengl
DebugGLES2.java
Generated by
1.9.4