JOGL
v2.6.0-rc-20250712
JOGL, High-Performance Graphics Binding for Java (public API).
TraceGL2.java
Go to the documentation of this file.
1
package
com.jogamp.opengl;
2
3
import
java.io.PrintStream;
4
5
/**
6
* <p>
7
* Composable pipeline which wraps an underlying {@link GL} implementation,
8
* providing tracing information to a user-specified {@link java.io.PrintStream}
9
* before and after each OpenGL method call.
10
* </p>
11
* <p>
12
* Sample code which installs this pipeline, manual:
13
* <pre>
14
* gl = drawable.setGL(new TraceGL(drawable.getGL(), System.err));
15
* </pre>
16
* For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
17
* </p>
18
*/
19
public
class
TraceGL2
extends
TraceGL4bc
{
20
public
TraceGL2
(
final
GL2
downstream,
final
PrintStream stream) {
21
super((
GL4bc
)downstream, stream);
22
}
23
}
com.jogamp.opengl.TraceGL2
Definition:
TraceGL2.java:19
com.jogamp.opengl.TraceGL2.TraceGL2
TraceGL2(final GL2 downstream, final PrintStream stream)
Definition:
TraceGL2.java:20
com.jogamp.opengl.TraceGL4bc
Definition:
TraceGL4bc.java:25
com.jogamp.opengl.GL2
Definition:
GL2.java:31
com.jogamp.opengl.GL4bc
Definition:
GL4bc.java:41
src
jogl
classes
com
jogamp
opengl
TraceGL2.java
Generated by
1.9.4