Updates for GL_EXT_timer_query:

New GLint64EXT and GLuint64EXT types (use C99's long long types).
New glGetQueryObject[u]i64vEXT() functions.
This commit is contained in:
Brian Paul
2005-12-07 14:48:19 +00:00
parent 98bebc7212
commit 0fa8c59e64
16 changed files with 2477 additions and 2280 deletions

View File

@@ -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);
}