summaryrefslogtreecommitdiff
path: root/specs/glapi.py
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2014-12-31 18:55:40 +0000
committerJosé Fonseca <jfonseca@vmware.com>2014-12-31 18:55:40 +0000
commit9257b3e90e8eef1fcf879f8d33eff926ede19f89 (patch)
treefb73e3d9b749b84c9b61a05117c9bb24529000c2 /specs/glapi.py
parent55992740ba45231109420560608fa031dcaefb47 (diff)
specs: Add glGetQueryBufferObject*.
Issue #310.
Diffstat (limited to 'specs/glapi.py')
-rw-r--r--specs/glapi.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/specs/glapi.py b/specs/glapi.py
index d5218efb..7ff87e2d 100644
--- a/specs/glapi.py
+++ b/specs/glapi.py
@@ -1057,6 +1057,10 @@ glapi.addFunctions([
GlFunction(Void, "glCreateSamplers", [(GLsizei, "n"), Out(Array(GLsampler, "n"), "samplers")]),
GlFunction(Void, "glCreateProgramPipelines", [(GLsizei, "n"), Out(Array(GLpipeline, "n"), "pipelines")]),
GlFunction(Void, "glCreateQueries", [(GLenum, "target"), (GLsizei, "n"), Out(Array(GLquery, "n"), "ids")]),
+ GlFunction(Void, "glGetQueryBufferObjecti64v", [(GLquery, "id"), (GLbuffer, "buffer"), (GLenum, "pname"), (GLintptr, "offset")]),
+ GlFunction(Void, "glGetQueryBufferObjectiv", [(GLquery, "id"), (GLbuffer, "buffer"), (GLenum, "pname"), (GLintptr, "offset")]),
+ GlFunction(Void, "glGetQueryBufferObjectui64v", [(GLquery, "id"), (GLbuffer, "buffer"), (GLenum, "pname"), (GLintptr, "offset")]),
+ GlFunction(Void, "glGetQueryBufferObjectuiv", [(GLquery, "id"), (GLbuffer, "buffer"), (GLenum, "pname"), (GLintptr, "offset")]),
# GL_ARB_draw_buffers
GlFunction(Void, "glDrawBuffersARB", [(GLsizei, "n"), (Array(Const(GLenum), "n"), "bufs")]),