diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-06-04 14:11:46 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:41:34 -0400 |
commit | 360ef827651bdc0da4b8ac251f3f048b1cab60d7 (patch) | |
tree | a482ca3c447605fe6c60317cc765da532166e7ef /src/mesa/main/tests/dispatch_sanity.cpp | |
parent | 29194648a6afc2cd681e3f5d1643ca49220b7975 (diff) |
mesa: add glTextureParameteri/iv/f/fvEXT
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/tests/dispatch_sanity.cpp')
-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 a524c58caf4..a8751e3b69e 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1033,10 +1033,10 @@ const struct function common_desktop_functions_possible[] = { /* GL_EXT_direct_state_access - GL 1.1 */ //{ "glClientAttribDefaultEXT", 11, -1 }, //{ "glPushClientAttribDefaultEXT", 11, -1 }, - //{ "glTextureParameteriEXT", 11, -1 }, - //{ "glTextureParameterivEXT", 11, -1 }, - //{ "glTextureParameterfEXT", 11, -1 }, - //{ "glTextureParameterfvEXT", 11, -1 }, + { "glTextureParameteriEXT", 11, -1 }, + { "glTextureParameterivEXT", 11, -1 }, + { "glTextureParameterfEXT", 11, -1 }, + { "glTextureParameterfvEXT", 11, -1 }, //{ "glTextureImage1DEXT", 11, -1 }, //{ "glTextureImage2DEXT", 11, -1 }, //{ "glTextureSubImage1DEXT", 11, -1 }, @@ -1046,8 +1046,8 @@ const struct function common_desktop_functions_possible[] = { //{ "glCopyTextureSubImage1DEXT", 11, -1 }, //{ "glCopyTextureSubImage2DEXT", 11, -1 }, //{ "glGetTextureImageEXT", 11, -1 }, - //{ "glGetTextureParameterfvEXT", 11, -1 }, - //{ "glGetTextureParameterivEXT", 11, -1 }, + { "glGetTextureParameterfvEXT", 11, -1 }, + { "glGetTextureParameterivEXT", 11, -1 }, //{ "glGetTextureLevelParameterfvEXT", 11, -1 }, //{ "glGetTextureLevelParameterivEXT", 11, -1 }, /* GL_EXT_direct_state_access - GL 1.2 */ |