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/state.c | |
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/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 562a0c5a451..57fa4a836c8 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -797,6 +797,10 @@ _mesa_init_exec_table(struct _glapi_table *exec) SET_GetFramebufferAttachmentParameterivEXT(exec, _mesa_GetFramebufferAttachmentParameterivEXT); SET_GenerateMipmapEXT(exec, _mesa_GenerateMipmapEXT); #endif + + /* GL_EXT_timer_query */ + SET_GetQueryObjecti64vEXT(exec, _mesa_GetQueryObjecti64vEXT); + SET_GetQueryObjectui64vEXT(exec, _mesa_GetQueryObjectui64vEXT); } |