summaryrefslogtreecommitdiffstats
path: root/src/demos/dualDepthPeeling
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-02-03 01:16:05 +0100
committerSven Gothel <[email protected]>2015-02-03 01:16:05 +0100
commitb32c5de0d658a0e41eabe6590da20bc8300c0dae (patch)
treed022fecab71be00412f52ecd528900e2966625d1 /src/demos/dualDepthPeeling
parent4392e90ea2909d89895d992833bf9e71ae922a1d (diff)
Bug 682 - Relocating javax.media.opengl.* -> com.jogamp.opengl.* (Part 1)
Diffstat (limited to 'src/demos/dualDepthPeeling')
-rw-r--r--src/demos/dualDepthPeeling/DualDepthPeeling.java10
-rw-r--r--src/demos/dualDepthPeeling/GLHelper.java2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/demos/dualDepthPeeling/DualDepthPeeling.java b/src/demos/dualDepthPeeling/DualDepthPeeling.java
index 41d50d0..67206e2 100644
--- a/src/demos/dualDepthPeeling/DualDepthPeeling.java
+++ b/src/demos/dualDepthPeeling/DualDepthPeeling.java
@@ -10,12 +10,12 @@ import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.nio.FloatBuffer;
-import javax.media.opengl.*;
-import javax.media.opengl.awt.GLCanvas;
-import javax.media.opengl.glu.GLU;
+import com.jogamp.opengl.*;
+import com.jogamp.opengl.awt.GLCanvas;
+import com.jogamp.opengl.glu.GLU;
-import javax.media.opengl.GLCapabilities;
-import javax.media.opengl.GLEventListener;
+import com.jogamp.opengl.GLCapabilities;
+import com.jogamp.opengl.GLEventListener;
import com.jogamp.common.nio.Buffers;
import com.jogamp.opengl.util.*;
diff --git a/src/demos/dualDepthPeeling/GLHelper.java b/src/demos/dualDepthPeeling/GLHelper.java
index cf1cccc..acfd9ae 100644
--- a/src/demos/dualDepthPeeling/GLHelper.java
+++ b/src/demos/dualDepthPeeling/GLHelper.java
@@ -10,7 +10,7 @@ package demos.dualDepthPeeling;
//
// Copyright (c) NVIDIA Corporation. All rights reserved.
////////////////////////////////////////////////////////////////////////////////
-import javax.media.opengl.GL2;
+import com.jogamp.opengl.GL2;
public class GLHelper
{