diff options
author | Laura Ekstrand <[email protected]> | 2015-01-06 11:48:38 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | 239e3fb87682163f78d0fd6c86375e77a44ee0d0 (patch) | |
tree | 663725b0ee76c391af9c1a54a40646d5d6c45773 /src/mesa/main/tests | |
parent | 8b5482ec035d0d8ad36b08f33fcd20f15ea39000 (diff) |
main: Added entry points for glCompressedTextureSubImage*D.
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 6d1c067d5e6..afdcbd0fbc3 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -980,6 +980,9 @@ const struct function gl_core_functions_possible[] = { { "glCopyTextureSubImage3D", 45, -1 }, { "glGetTextureImage", 45, -1 }, { "glGetCompressedTextureImage", 45, -1 }, + { "glCompressedTextureSubImage1D", 45, -1 }, + { "glCompressedTextureSubImage2D", 45, -1 }, + { "glCompressedTextureSubImage3D", 45, -1 }, { NULL, 0, -1 } }; |