summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorTapani Pälli <[email protected]>2017-11-20 08:36:52 +0200
committerTapani Pälli <[email protected]>2017-12-15 08:42:48 +0200
commit0a202dd5e82b6796e919b5f970f8f79622967174 (patch)
treefe2c551b2421a4d18650501ae14512c6ad8522c8 /src/mesa/main
parent80d96ca4c862dcf275b93e603916193094c59d6e (diff)
glapi: add GL_EXT_disjoint_timer_query
Most entrypoints already available via other extensions like GL_EXT_occlusion_query_boolean, GL_EXT_timer_query. Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index 00754deb461..d697343627e 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -2441,6 +2441,11 @@ const struct function gles2_functions_possible[] = {
{ "glGetQueryObjectivEXT", 20, -1 },
{ "glGetQueryObjectuivEXT", 20, -1 },
+ /* GL_EXT_disjoint_timer_query */
+ { "glGetQueryObjecti64vEXT", 20, -1 },
+ { "glGetQueryObjectui64vEXT", 20, -1 },
+ { "glQueryCounterEXT", 20, -1 },
+
{ NULL, 0, -1 }
};