diff options
author | Ilia Mirkin <[email protected]> | 2016-04-03 02:44:50 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-04-03 20:40:55 -0400 |
commit | d76e1cd2dd24d0807a8db78fb6f7ebfeb50f22b4 (patch) | |
tree | e5ac81906563772871bebf39f9169b44b8dfdfc3 /src/mesa/main/tests | |
parent | 807e2c27ac03718df8f53c2f28686dfed4c12677 (diff) |
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 <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 5 |
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 c6599fd5cea..c85bc54fe35 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 } }; |