diff options
author | Brian Paul <[email protected]> | 2005-12-07 14:48:19 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-12-07 14:48:19 +0000 |
commit | 0fa8c59e646b214ea61c077f723e8ffe1cc06733 (patch) | |
tree | c55b85a279eba315344d5954452bfda0705c7c1d /src/mesa/main/occlude.h | |
parent | 98bebc7212a47f97ef6d15d4fca45a0fa608aea2 (diff) |
Updates for GL_EXT_timer_query:
New GLint64EXT and GLuint64EXT types (use C99's long long types).
New glGetQueryObject[u]i64vEXT() functions.
Diffstat (limited to 'src/mesa/main/occlude.h')
-rw-r--r-- | src/mesa/main/occlude.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/occlude.h b/src/mesa/main/occlude.h index cecf7cb2b9e..ada8cf83560 100644 --- a/src/mesa/main/occlude.h +++ b/src/mesa/main/occlude.h @@ -60,5 +60,11 @@ _mesa_GetQueryObjectivARB(GLuint id, GLenum pname, GLint *params); extern void GLAPIENTRY _mesa_GetQueryObjectuivARB(GLuint id, GLenum pname, GLuint *params); +extern void GLAPIENTRY +_mesa_GetQueryObjecti64vEXT(GLuint id, GLenum pname, GLint64EXT *params); + +extern void GLAPIENTRY +_mesa_GetQueryObjectui64vEXT(GLuint id, GLenum pname, GLuint64EXT *params); + #endif /* OCCLUDE_H */ |