aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/javax/media/opengl/DebugGL3bc.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/DebugGL3bc.java')
-rw-r--r--src/jogl/classes/javax/media/opengl/DebugGL3bc.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/jogl/classes/javax/media/opengl/DebugGL3bc.java b/src/jogl/classes/javax/media/opengl/DebugGL3bc.java
deleted file mode 100644
index d92f6043f..000000000
--- a/src/jogl/classes/javax/media/opengl/DebugGL3bc.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.jogamp.opengl;
-
-/**
- * <p>
- * Composable pipeline which wraps an underlying {@link GL} implementation,
- * providing error checking after each OpenGL method call. If an error occurs,
- * causes a {@link GLException} to be thrown at exactly the point of failure.
- * </p>
- * <p>
- * Sample code which installs this pipeline, manual:
- * <pre>
- * gl = drawable.setGL(new DebugGL(drawable.getGL()));
- * </pre>
- * For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
- * </p>
- */
-public class DebugGL3bc extends DebugGL4bc {
- public DebugGL3bc(final GL3bc downstream) {
- super((GL4bc)downstream);
- }
-}