aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/gl-common.cfg9
1 files changed, 8 insertions, 1 deletions
diff --git a/make/gl-common.cfg b/make/gl-common.cfg
index 6d09f2388..12cc271d5 100644
--- a/make/gl-common.cfg
+++ b/make/gl-common.cfg
@@ -10,6 +10,11 @@ Import java.util.*
Import net.java.games.jogl.*
Import net.java.games.jogl.impl.*
+# Generate "flattened" NIO variants for routines taking C primitive
+# pointers that aren't of type void*
+NioMode ALL_POINTERS
+FlattenNIOVariants true
+
# Don't output #defines of GL version identifier strings as constants,
# because we don't need them java-side.
Ignore GL_VERSION_.+
@@ -127,12 +132,14 @@ Opaque boolean GLboolean
ReturnsString glGetString
#
-# NIOOnly directives for vertex arrays
+# NIOOnly directives for vertex arrays and other core routines
#
NIOOnly glColorPointer
NIOOnly glEdgeFlagPointer
+NIOOnly glFeedbackBuffer
NIOOnly glIndexPointer
NIOOnly glNormalPointer
+NIOOnly glSelectBuffer
NIOOnly glTexCoordPointer
NIOOnly glVertexPointer
#