summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/javax/media/opengl/TraceGL4.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/TraceGL4.java')
-rw-r--r--src/jogl/classes/javax/media/opengl/TraceGL4.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/jogl/classes/javax/media/opengl/TraceGL4.java b/src/jogl/classes/javax/media/opengl/TraceGL4.java
deleted file mode 100644
index b0c817105..000000000
--- a/src/jogl/classes/javax/media/opengl/TraceGL4.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.jogamp.opengl;
-
-import java.io.PrintStream;
-
-/**
- * <p>
- * 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.
- * </p>
- * <p>
- * Sample code which installs this pipeline, manual:
- * <pre>
- * gl = drawable.setGL(new TraceGL(drawable.getGL(), System.err));
- * </pre>
- * For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
- * </p>
- */
-public class TraceGL4 extends TraceGL4bc {
- public TraceGL4(final GL4 downstream, final PrintStream stream) {
- super((GL4bc)downstream, stream);
- }
-}