diff options
author | Tapani Pälli <[email protected]> | 2015-02-16 14:15:36 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2015-04-16 07:30:12 +0300 |
commit | b297fc27aa93c4af4cf8ecf9702fd0b95d2c4f9a (patch) | |
tree | ffbd2fe10fe6b0be37b212bc1d20f79fdb0f87f8 /src/mesa/main/tests | |
parent | 993b9b6adbd2c97ccb58b7cbc46382d1ae87b9ab (diff) |
glapi: add GL_ARB_program_interface_query skeleton
v2: update dispatch_sanity test (Jason Ekstrand)
+ small code cleanups
v3: xml and Makefile fixes (Ilia Mirkin, Matt Turner)
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Martin Peres <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index eb83e4db255..946eabb7eab 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -832,12 +832,12 @@ const struct function gl_core_functions_possible[] = { { "glInvalidateSubFramebuffer", 43, -1 }, { "glMultiDrawArraysIndirect", 43, -1 }, { "glMultiDrawElementsIndirect", 43, -1 }, -// { "glGetProgramInterfaceiv", 43, -1 }, // XXX: Add to xml -// { "glGetProgramResourceIndex", 43, -1 }, // XXX: Add to xml -// { "glGetProgramResourceName", 43, -1 }, // XXX: Add to xml -// { "glGetProgramResourceiv", 43, -1 }, // XXX: Add to xml -// { "glGetProgramResourceLocation", 43, -1 }, // XXX: Add to xml -// { "glGetProgramResourceLocationIndex", 43, -1 }, // XXX: Add to xml + { "glGetProgramInterfaceiv", 43, -1 }, + { "glGetProgramResourceIndex", 43, -1 }, + { "glGetProgramResourceName", 43, -1 }, + { "glGetProgramResourceiv", 43, -1 }, + { "glGetProgramResourceLocation", 43, -1 }, + { "glGetProgramResourceLocationIndex", 43, -1 }, // { "glShaderStorageBlockBinding", 43, -1 }, // XXX: Add to xml { "glTexBufferRange", 43, -1 }, // { "glTextureBufferRangeEXT", 43, -1 }, // XXX: Add to xml |