aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-06 06:32:39 +0100
committerSven Gothel <[email protected]>2010-11-06 06:32:39 +0100
commite6adf010ac40436b2fe8767742d8f25176ff932c (patch)
treef7ddbd0c65e393e44f59b582b2799317f3a951e8
parentcb4da94bf947f2a3b3f0ceb9a5bbae39ee34d275 (diff)
EGL: Fix gluegen usage
-rw-r--r--make/config/jogl/eglext.cfg12
1 files changed, 6 insertions, 6 deletions
diff --git a/make/config/jogl/eglext.cfg b/make/config/jogl/eglext.cfg
index 40239371d..3b46aca57 100644
--- a/make/config/jogl/eglext.cfg
+++ b/make/config/jogl/eglext.cfg
@@ -24,6 +24,7 @@ CustomCCode /* Define EGL_EGLEXT_PROTOTYPES so that the EGL extension prototypes
CustomCCode "eglext.h" are parsed. */
CustomCCode #define EGL_EGLEXT_PROTOTYPES
CustomCCode
+CustomCCode #include <EGL/egl.h>
CustomCCode #include <EGL/eglext.h>
Include ../intptr.cfg
@@ -31,12 +32,11 @@ Include ../intptr.cfg
# There are some #defines in eglext.h that GlueGen and PCPP don't currently handle
CustomJavaCode EGLExt /** Part of <code>EGL_KHR_image</code> */
CustomJavaCode EGLExt public static final long EGL_NO_IMAGE = 0;
-CustomJavaCode EGLExt /** Part of <code>EGL_NV_perfmon</code> */
-CustomJavaCode EGLExt public static final long EGL_NO_PERFMONITOR = 0;
-CustomJavaCode EGLExt /** Part of <code>EGL_NV_perfmon</code> */
-CustomJavaCode EGLExt public static final long EGL_DEFAULT_PERFMARKER = 0;
-CustomJavaCode EGLExt /** Part of <code>EGL_KHR_sync</code> */
-CustomJavaCode EGLExt public static final long EGL_FOREVER_KHR = 0xFFFFFFFFFFFFFFFFL ;
+#CustomJavaCode EGLExt /** Part of <code>EGL_KHR_reusable_sync</code> */
+#CustomJavaCode EGLExt public static final long EGL_FOREVER_KHR = 0xFFFFFFFFFFFFFFFFL ;
+CustomJavaCode EGLExt /** Part of <code>EGL_KHR_reusable_sync</code> */
+CustomJavaCode EGLExt public static final long EGL_NO_SYNC_KHR = 0;
+
CustomJavaCode EGLExt public boolean isFunctionAvailable(String glFunctionName);
CustomJavaCode EGLExt public boolean isExtensionAvailable(String glExtensionName);