diff options
author | Laura Ekstrand <[email protected]> | 2014-12-10 15:35:38 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | c2c50778648e8d3ae13c6233ed3b7149327a2b1f (patch) | |
tree | a8a56e40ad3054ee64ec423ffcef43561f794070 /src/mesa/main/tests | |
parent | 89912d04a10d6d70c3f9791beecace76c6c550a0 (diff) |
main: Added entry points for glGetTextureParameteriv, Iiv, and Iuiv.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 7ee3109b0a8..85a0286ec45 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -972,6 +972,9 @@ const struct function gl_core_functions_possible[] = { { "glGetTextureLevelParameterfv", 45, -1 }, { "glGetTextureLevelParameteriv", 45, -1 }, { "glGetTextureParameterfv", 45, -1 }, + { "glGetTextureParameterIiv", 45, -1 }, + { "glGetTextureParameterIuiv", 45, -1 }, + { "glGetTextureParameteriv", 45, -1 }, { NULL, 0, -1 } }; |