JOGL
v2.6.0-rc-20250712
JOGL, High-Performance Graphics Binding for Java (public API).
DebugGL4.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
DebugGL4
extends
DebugGL4bc
{
18
public
DebugGL4
(
final
GL4
downstream) {
19
super((
GL4bc
)downstream);
20
}
21
}
com.jogamp.opengl.DebugGL4
Definition:
DebugGL4.java:17
com.jogamp.opengl.DebugGL4.DebugGL4
DebugGL4(final GL4 downstream)
Definition:
DebugGL4.java:18
com.jogamp.opengl.DebugGL4bc
Definition:
DebugGL4bc.java:25
com.jogamp.opengl.GL4
Definition:
GL4.java:26
com.jogamp.opengl.GL4bc
Definition:
GL4bc.java:41
src
jogl
classes
com
jogamp
opengl
DebugGL4.java
Generated by
1.9.4