diff options
author | Tapani Pälli <[email protected]> | 2018-05-09 09:12:32 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-05-24 12:53:07 +0300 |
commit | 3ddcdcf94d79a01728b45ccf4f1131e208375544 (patch) | |
tree | b3b903fdd640d5e62ba5331066540152ec60e381 /src/mesa/main/tests/dispatch_sanity.cpp | |
parent | 046b2b651e41b1e1f6ba32fdb04b2caac6b46e65 (diff) |
mesa: changes to expose OES_texture_view extension
Functionality already covered by ARB_texture_view, patch also
adds missing 'gles guard' for enums (added in f1563e6392).
Tested via arb_texture_view.*_gles3 tests and individual app
utilizing texture view with ETC2.
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/tests/dispatch_sanity.cpp')
-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 b9de084ccfb..096d16a6092 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -2748,6 +2748,9 @@ const struct function gles31_functions_possible[] = { /* GL_OES_texture_storage_multisample_2d_array */ { "glTexStorage3DMultisampleOES", 31, -1 }, + /* GL_OES_texture_view */ + { "glTextureViewOES", 31, -1 }, + /* GL_EXT_buffer_storage */ { "glBufferStorageEXT", 31, -1 }, |