diff options
author | Sven Gothel <[email protected]> | 2015-02-03 01:16:05 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-02-03 01:16:05 +0100 |
commit | b32c5de0d658a0e41eabe6590da20bc8300c0dae (patch) | |
tree | d022fecab71be00412f52ecd528900e2966625d1 /src/demos/swt | |
parent | 4392e90ea2909d89895d992833bf9e71ae922a1d (diff) |
Bug 682 - Relocating javax.media.opengl.* -> com.jogamp.opengl.* (Part 1)
Diffstat (limited to 'src/demos/swt')
-rw-r--r-- | src/demos/swt/Snippet209.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demos/swt/Snippet209.java b/src/demos/swt/Snippet209.java index f75d59d..5afa43d 100644 --- a/src/demos/swt/Snippet209.java +++ b/src/demos/swt/Snippet209.java @@ -27,11 +27,11 @@ import org.eclipse.swt.graphics.*; import org.eclipse.swt.opengl.GLCanvas; import org.eclipse.swt.opengl.GLData; -import javax.media.opengl.GLProfile; -import javax.media.opengl.GL2; -import javax.media.opengl.GLContext; -import javax.media.opengl.GLDrawableFactory; -import javax.media.opengl.glu.GLU; +import com.jogamp.opengl.GLProfile; +import com.jogamp.opengl.GL2; +import com.jogamp.opengl.GLContext; +import com.jogamp.opengl.GLDrawableFactory; +import com.jogamp.opengl.glu.GLU; public class Snippet209 { static void drawTorus(GL2 gl, float r, float R, int nsides, int rings) { |