diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-05-02 15:01:05 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-07-30 22:04:26 -0400 |
commit | a0ac0e26539eaa4501da2691edab3c183a9634ec (patch) | |
tree | cc5533f213224b7a3c89c666573fa656997e1aa1 /src/mesa/main/tests/dispatch_sanity.cpp | |
parent | ef84d93f3dabfa7e5bca82cfff05e836545a01ea (diff) |
mesa: add EXT_dsa indexed generic queries
Only GetPointerIndexedvEXT needs an implementation, the other functions are
aliases of existing functions.
Diffstat (limited to 'src/mesa/main/tests/dispatch_sanity.cpp')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index cecca5e0aa9..0702c6de0a3 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1094,7 +1094,7 @@ const struct function common_desktop_functions_possible[] = { //{ "glCopyMultiTexSubImage3DEXT", 12, -1 }, { "glEnableClientStateIndexedEXT", 12, -1 }, { "glDisableClientStateIndexedEXT", 12, -1 }, - //{ "glGetPointerIndexedvEXT", 12, -1 }, + { "glGetPointerIndexedvEXT", 12, -1 }, /* GL_EXT_direct_state_access - ARB_vertex_program */ //{ "glNamedProgramStringEXT", 10, -1 }, //{ "glNamedProgramLocalParameter4dEXT", 10, -1 }, @@ -1185,7 +1185,6 @@ const struct function common_desktop_functions_possible[] = { /* GL_EXT_direct_state_access - GL 3.0 */ //{ "glGetFloati_vEXT", 30, -1 }, //{ "glGetDoublei_vEXT", 30, -1 }, - //{ "glGetPointeri_vEXT", 30, -1 }, //{ "glNamedRenderbufferStorageEXT", 30, -1 }, //{ "glGetNamedRenderbufferParameterivEXT", 30, -1 }, //{ "glNamedRenderbufferStorageMultisampleEXT", 30, -1 }, |