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