From 2b954ff1fe88f35b59da6c6f6b82fde70274a6ef Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Sat, 27 Mar 2010 23:24:13 +0100 Subject: refactoring: renamed com.sun.opengl -> com.jogamp.opengl. --- make/config/jogl/cg-common.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'make/config/jogl/cg-common.cfg') diff --git a/make/config/jogl/cg-common.cfg b/make/config/jogl/cg-common.cfg index 9b8dba079..e9ff9d907 100644 --- a/make/config/jogl/cg-common.cfg +++ b/make/config/jogl/cg-common.cfg @@ -1,6 +1,6 @@ # This .cfg file provides common options used among all Cg glue code # generated for Jogl on all platforms. -Package com.sun.opengl.cg +Package com.jogamp.opengl.cg JavaClass CgGL Style AllStatic JavaOutputDir gensrc/classes @@ -97,7 +97,7 @@ Ignore cgGetProgramOptions # Import java.nio.* # And NativeLibLoader for help loading the native libraries -Import com.sun.opengl.impl.* +Import com.jogamp.opengl.impl.* # # NIODirectOnly directives for routines requiring them for semantic reasons -- cgit v1.2.3 From e76ebd8a98dfc60af05a490cae6e2e057a5c351d Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Thu, 8 Apr 2010 01:39:38 +0200 Subject: removed duplicated imports in config files due to changes in gluegen. --- make/config/jogl/cg-common.cfg | 4 ---- make/config/jogl/egl-common.cfg | 1 - make/config/jogl/gl-common.cfg | 1 - make/config/jogl/glu-common.cfg | 1 - 4 files changed, 7 deletions(-) (limited to 'make/config/jogl/cg-common.cfg') diff --git a/make/config/jogl/cg-common.cfg b/make/config/jogl/cg-common.cfg index e9ff9d907..927d233a8 100644 --- a/make/config/jogl/cg-common.cfg +++ b/make/config/jogl/cg-common.cfg @@ -92,10 +92,6 @@ Ignore cgGetIntStateAssignmentValues Ignore cgGetParameterValues Ignore cgGetProgramOptions -# -# Need to import New IO for Buffer classes -# -Import java.nio.* # And NativeLibLoader for help loading the native libraries Import com.jogamp.opengl.impl.* diff --git a/make/config/jogl/egl-common.cfg b/make/config/jogl/egl-common.cfg index 01b681b87..fd65d5c10 100644 --- a/make/config/jogl/egl-common.cfg +++ b/make/config/jogl/egl-common.cfg @@ -4,7 +4,6 @@ GLHeader EGL/egl.h GLHeader EGL/eglext.h # Imports needed by all glue code -Import java.nio.* Import java.util.* Import javax.media.opengl.* Import javax.media.opengl.fixedfunc.* diff --git a/make/config/jogl/gl-common.cfg b/make/config/jogl/gl-common.cfg index 022c272df..0f6529167 100644 --- a/make/config/jogl/gl-common.cfg +++ b/make/config/jogl/gl-common.cfg @@ -8,7 +8,6 @@ RuntimeExceptionType GLException UnsupportedExceptionType GLException # Imports needed by all glue code -Import java.nio.* Import java.util.* Import javax.media.opengl.* Import javax.media.opengl.fixedfunc.* diff --git a/make/config/jogl/glu-common.cfg b/make/config/jogl/glu-common.cfg index 8fd053da1..937ca0348 100644 --- a/make/config/jogl/glu-common.cfg +++ b/make/config/jogl/glu-common.cfg @@ -9,7 +9,6 @@ TagNativeBinding true # # Imports needed by all glue code # -Import java.nio.* Import javax.media.opengl.* Import javax.media.opengl.glu.* Import com.jogamp.opengl.impl.* -- cgit v1.2.3