From 78b4918b207e16b967e8335fb8ec1b31c706c507 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 2 Feb 2015 02:38:55 +0100 Subject: Bug 682 - Relocating javax.media.opengl.* -> com.jogamp.opengl.* (Part 2) Relocation javax.media.nativewindow.* -> com.jogamp.nativewindow.* Relocation javax.media.opengl.* -> com.jogamp.opengl.* --- src/jogl/classes/javax/media/opengl/TraceGL4.java | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/jogl/classes/javax/media/opengl/TraceGL4.java (limited to 'src/jogl/classes/javax/media/opengl/TraceGL4.java') 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; - -/** - *

- * 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 TraceGL4 extends TraceGL4bc { - public TraceGL4(final GL4 downstream, final PrintStream stream) { - super((GL4bc)downstream, stream); - } -} -- cgit v1.2.3