diff options
author | Laura Ekstrand <[email protected]> | 2014-10-24 10:04:11 -0700 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:28 -0800 |
commit | 5a5fe9f308908a6c09f910429d0d3021fdbf7872 (patch) | |
tree | 5ed6ccf2be70d01d65fcfca5e180a6405de391e1 /src/mesa/main/tests | |
parent | 97c838cf856e478401be9526ab028aea3aacad26 (diff) |
main: Added entry points for glTextureStorage*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 f301b59344b..731adbb2fcf 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -956,6 +956,9 @@ const struct function gl_core_functions_possible[] = { /* GL_ARB_direct_state_access */ { "glCreateTextures", 45, -1 }, + { "glTextureStorage1D", 45, -1 }, + { "glTextureStorage2D", 45, -1 }, + { "glTextureStorage3D", 45, -1 }, { NULL, 0, -1 } }; |