diff options
author | Timothy Arceri <[email protected]> | 2018-05-18 15:20:35 +1000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:41:12 -0400 |
commit | 83ed9485b75c92e269c000a5d184393fbe4cbd77 (patch) | |
tree | 01ab59d64aa09b461782b29a65c20e1c7678b803 /src/mesa/main/tests | |
parent | 0972b0b059d78fb30d982939d0849542ecdf6f98 (diff) |
mesa: add support for glNamedBuffer*DataEXT()
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index eb0f217a1d2..0fba8d19fe3 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1126,8 +1126,8 @@ const struct function common_desktop_functions_possible[] = { { "glMatrixMultTransposefEXT", 13, -1 }, { "glMatrixMultTransposedEXT", 13, -1 }, /* GL_EXT_direct_state_access - GL 1.5 */ - //{ "glNamedBufferDataEXT", 15, -1 }, - //{ "glNamedBufferSubDataEXT", 15, -1 }, + { "glNamedBufferDataEXT", 15, -1 }, + { "glNamedBufferSubDataEXT", 15, -1 }, //{ "glMapNamedBufferEXT", 15, -1 }, //{ "glUnmapNamedBufferEXT", 15, -1 }, //{ "glGetNamedBufferParameterivEXT", 15, -1 }, |