diff options
author | Laura Ekstrand <[email protected]> | 2014-12-09 17:44:51 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:28 -0800 |
commit | b8939fd3d1544f9dd24404a4f768797f99e5efc1 (patch) | |
tree | 921fbcebc6cfe7d5a86c192565a92347fb4ab53e /src/mesa/main/tests | |
parent | 5a5fe9f308908a6c09f910429d0d3021fdbf7872 (diff) |
main: Added entry points for glTextureSubImage*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 731adbb2fcf..c9decb7af8b 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -959,6 +959,9 @@ const struct function gl_core_functions_possible[] = { { "glTextureStorage1D", 45, -1 }, { "glTextureStorage2D", 45, -1 }, { "glTextureStorage3D", 45, -1 }, + { "glTextureSubImage1D", 45, -1 }, + { "glTextureSubImage2D", 45, -1 }, + { "glTextureSubImage3D", 45, -1 }, { NULL, 0, -1 } }; |