diff options
author | Timothy Arceri <[email protected]> | 2018-05-18 13:23:15 +1000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:41:14 -0400 |
commit | eec5c01b5efc1ab81bfe1af15855e17e852ed4a3 (patch) | |
tree | b67813005cb177cae6fa35f5471f0ecd362ad1f4 /src/mesa/main/tests | |
parent | 83ed9485b75c92e269c000a5d184393fbe4cbd77 (diff) |
mesa: add support for glNamedBufferStorageEXT
This is available in ARB_buffer_storage when
EXT_direct_state_access is present.
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 0fba8d19fe3..c789a2d513b 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -1295,6 +1295,7 @@ const struct function common_desktop_functions_possible[] = { /* GL_ARB_buffer_storage */ { "glBufferStorage", 43, -1 }, + { "glNamedBufferStorageEXT", 43, -1 }, /* GL_ARB_clear_texture */ { "glClearTexImage", 13, -1 }, |