diff options
-rw-r--r-- | make/config/jogl/gl-common.cfg | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/make/config/jogl/gl-common.cfg b/make/config/jogl/gl-common.cfg index d686c03f3..39b1dbde7 100644 --- a/make/config/jogl/gl-common.cfg +++ b/make/config/jogl/gl-common.cfg @@ -360,10 +360,7 @@ ReturnsString glGetStringi # # NIODirectOnly directives for vertex arrays and other core routines -# essential where the buffer lifecycle extends the function call -# or where a Buffer argument shall hold return values -# (no guarantee of pinpoint array memory access). -# The latter is not handled by GlueGen, and would be expensive! +# essential where the buffer lifecycle extends the function call. # # Note: API calls like glColorPointer(..) will not be exploded to # multiple primitive arrays, since the pointer argument is 'void *'. @@ -379,10 +376,13 @@ ReturnsString glGetStringi #NIODirectOnly glVertexAttribPointer #NIODirectOnly glFogCoordPointer #NIODirectOnly glSecondaryColorPointer -NIODirectOnly glGetPointerv -NIODirectOnly glFeedbackBuffer -NIODirectOnly glSelectBuffer -NIODirectOnly glGetBufferSubData + +#Return values +#NIODirectOnly glGenBuffers +#NIODirectOnly glGetPointerv +#NIODirectOnly glFeedbackBuffer +#NIODirectOnly glSelectBuffer +#NIODirectOnly glGetBufferSubData # # NIODirectOnly directives for other extensions |