aboutsummaryrefslogtreecommitdiffstats
path: root/make/cglext.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/cglext.cfg')
-rwxr-xr-xmake/cglext.cfg10
1 files changed, 5 insertions, 5 deletions
diff --git a/make/cglext.cfg b/make/cglext.cfg
index cf930c17f..b37cdfc6c 100755
--- a/make/cglext.cfg
+++ b/make/cglext.cfg
@@ -3,12 +3,12 @@
# Note that there are currently no such extensions exposed on Mac OS
# X, but if in the future there are, this structure will allow them to
# be easily exposed.
-Package com.sun.opengl.impl.macosx
+Package com.sun.opengl.impl.macosx.cgl
Style InterfaceAndImpl
JavaClass CGLExt
-ImplPackage com.sun.opengl.impl.macosx
+ImplPackage com.sun.opengl.impl.macosx.cgl
ImplJavaClass CGLExtImpl
-Include gl-common-macosx.cfg
+Include gl-common-gl2.cfg
Include gl-desktop.cfg
EmitProcAddressTable true
@@ -37,7 +37,7 @@ CustomCCode typedef unsigned int* PUINT;
CustomJavaCode CGLExt public boolean isFunctionAvailable(String glFunctionName);
CustomJavaCode CGLExt public boolean isExtensionAvailable(String glExtensionName);
-CustomJavaCode CGLExtImpl public CGLExtImpl(MacOSXGLContext context) {
+CustomJavaCode CGLExtImpl public CGLExtImpl(MacOSXCGLContext context) {
CustomJavaCode CGLExtImpl this._context = context;
CustomJavaCode CGLExtImpl }
@@ -51,4 +51,4 @@ CustomJavaCode CGLExtImpl {
CustomJavaCode CGLExtImpl return _context.isExtensionAvailable(glExtensionName);
CustomJavaCode CGLExtImpl }
-CustomJavaCode CGLExtImpl private MacOSXGLContext _context;
+CustomJavaCode CGLExtImpl private MacOSXCGLContext _context;