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