diff options
author | Vinson Lee <[email protected]> | 2014-02-25 12:18:41 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2014-02-25 14:00:08 -0800 |
commit | f094866d93b772cc91844e012ad07ce4a78fda5d (patch) | |
tree | d0322da04338b2f31728f374012349e0e0b03655 /src/mesa/main/tests | |
parent | 9dfd7c5f75c806801b1b4b4d405899236c09ba75 (diff) |
mesa: Add GL_ARB_buffer_storage to dispatch_sanity.cpp.
Fixes 'make check' failure introduced with commit
119ffa7307d62e7310ce3902fded662ee4021c92.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=75503
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
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 117a57096a9..d1b00116e26 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -933,6 +933,9 @@ const struct function gl_core_functions_possible[] = { { "glVDPAUMapSurfacesNV", 11, -1 }, { "glVDPAUUnmapSurfacesNV", 11, -1 }, + /* GL_ARB_buffer_storage */ + { "glBufferStorage", 43, -1 }, + { NULL, 0, -1 } }; |