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