diff options
author | Gurchetan Singh <[email protected]> | 2019-08-14 15:16:04 -0700 |
---|---|---|
committer | Gurchetan Singh <[email protected]> | 2020-01-13 14:57:18 -0800 |
commit | b68ff2b8731427b3b68c9c81902f7ba93606caaf (patch) | |
tree | 1341880fb8b03bee74480a6c24fb74ac0d91d67e /src/mesa/main/tests | |
parent | 1fe23d0e22afee2cccafaec4d06399bdcca0f7d6 (diff) |
glapi / teximage: implement EGLImageTargetTexStorageEXT
Check various parts of the EXT_EGL_image_storage spec, and add a
new vfunc for drivers implementing it.
Reviewed-by: Tapani Pälli <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index c1c293b843a..7298aa66308 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -559,6 +559,10 @@ const struct function common_desktop_functions_possible[] = { { "glEGLImageTargetRenderbufferStorageOES", 31, -1 }, { "glEGLImageTargetTexture2DOES", 31, -1 }, + /* EXT_EGL_image_storage */ + { "glEGLImageTargetTexStorageEXT", 31, -1 }, + { "glEGLImageTargetTextureStorageEXT", 31, -1 }, + /* GL 3.2 */ { "glGetInteger64i_v", 32, -1 }, { "glGetBufferParameteri64v", 32, -1 }, @@ -2637,6 +2641,9 @@ const struct function gles3_functions_possible[] = { { "glFramebufferParameteriMESA", 30, -1 }, { "glGetFramebufferParameterivMESA", 30, -1 }, + /* EXT_EGL_image_storage */ + { "glEGLImageTargetTexStorageEXT", 30, -1 }, + { NULL, 0, -1 } }; |