javax.media.opengl.TraceGL3bc Maven / Gradle / Ivy
package javax.media.opengl;
import java.io.PrintStream;
/**
*
* Composable pipeline which wraps an underlying {@link GL} implementation,
* providing tracing information to a user-specified {@link java.io.PrintStream}
* before and after each OpenGL method call.
*
*
* Sample code which installs this pipeline, manual:
*
* gl = drawable.setGL(new TraceGL(drawable.getGL(), System.err));
*
* For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
*
*/
public class TraceGL3bc extends TraceGL4bc {
public TraceGL3bc(GL3bc downstream, PrintStream stream) {
super((GL4bc)downstream, stream);
}
}