diff options
author | Indrajit Kumar Das <[email protected]> | 2020-01-20 14:19:47 +0530 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-24 16:31:06 +0000 |
commit | 18124d727865f1c53b0dac644560bce177b7d233 (patch) | |
tree | 09bc2e6e10214fb6bd457cc3bc45725afd43bb3d /src/mesa/main/tests | |
parent | ae7bda27a0691d6d89c35c9f732b6e49d726c17f (diff) |
glapi/copyimage: Implement CopyImageSubDataNV
Implement CopyImageSubDataNV from NV_copy_image spec.
This is derived out of the existing implementation of CopyImageSubData.
It differs from CopyImageSubData in accordance with the differences
laid down in the ARB_copy_image spec.
Reviewed-by: Marek Olšák <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3649>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3649>
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 0a86c127d05..e0324bd54d2 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -563,6 +563,9 @@ const struct function common_desktop_functions_possible[] = { { "glEGLImageTargetTexStorageEXT", 31, -1 }, { "glEGLImageTargetTextureStorageEXT", 31, -1 }, + /* GL_NV_copy_image */ + { "glCopyImageSubDataNV", 31, -1 }, + /* GL 3.2 */ { "glGetInteger64i_v", 32, -1 }, { "glGetBufferParameteri64v", 32, -1 }, |