diff options
author | Ilia Mirkin <[email protected]> | 2014-03-01 16:46:53 -0500 |
---|---|---|
committer | Neil Roberts <[email protected]> | 2014-07-23 11:50:37 +0100 |
commit | c4067acd908322d79a4e08b9f4fffdd453c518ee (patch) | |
tree | f36b0cf6440515a75bb16c2ab0cdf7872530b34b /src/mesa/main/tests | |
parent | 07c65b85eada8dd34019763b6e82ed4257a9b4a6 (diff) |
mesa/main: add ARB_clear_texture entrypoints
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Neil Roberts <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 0e57653b4b4..6c4bdee7fd4 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -947,6 +947,10 @@ const struct function gl_core_functions_possible[] = { /* GL_ARB_buffer_storage */ { "glBufferStorage", 43, -1 }, + /* GL_ARB_clear_texture */ + { "glClearTexImage", 13, -1 }, + { "glClearTexSubImage", 13, -1 }, + { NULL, 0, -1 } }; |