summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/tests
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2016-04-03 02:44:50 -0400
committerIlia Mirkin <imirkin@alum.mit.edu>2016-04-03 20:40:55 -0400
commitd76e1cd2dd24d0807a8db78fb6f7ebfeb50f22b4 (patch)
treee5ac81906563772871bebf39f9169b44b8dfdfc3 /src/mesa/main/tests
parent807e2c27ac03718df8f53c2f28686dfed4c12677 (diff)
downloadexternal_mesa3d-d76e1cd2dd24d0807a8db78fb6f7ebfeb50f22b4.zip
external_mesa3d-d76e1cd2dd24d0807a8db78fb6f7ebfeb50f22b4.tar.gz
external_mesa3d-d76e1cd2dd24d0807a8db78fb6f7ebfeb50f22b4.tar.bz2
mesa: expose EXT_base_instance in ES3 contexts
This extension is identical to ARB_base_instance. Reuse the same entrypoints. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Reviewed-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa/main/tests')
-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 c6599fd..c85bc54 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -2476,6 +2476,11 @@ const struct function gles3_functions_possible[] = {
{ "glDisableiOES", 30, -1 },
{ "glIsEnablediOES", 30, -1 },
+ /* GL_EXT_base_instance */
+ { "glDrawArraysInstancedBaseInstanceEXT", 30, -1 },
+ { "glDrawElementsInstancedBaseInstanceEXT", 30, -1 },
+ { "glDrawElementsInstancedBaseVertexBaseInstanceEXT", 30, -1 },
+
{ NULL, 0, -1 }
};