diff options
author | Nicolai Hähnle <[email protected]> | 2017-02-02 20:47:31 +0100 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-04-05 10:31:01 +0200 |
commit | d085c7ce7c7da3441ea6320c4eb690d665d8c8dc (patch) | |
tree | a9a189e9e5ecec864f1015a1a5f1b32575f9d799 /src/mesa/main/tests | |
parent | a0970de8398fa292299f42c2664b59f58ee61aa2 (diff) |
mesa: Add GL_ARB_sparse_buffer boilerplate
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-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, 4 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 2ea87043029..12a9ee7bae1 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -961,6 +961,10 @@ const struct function common_desktop_functions_possible[] = { /* GL_KHR_blend_equation_advanced */ { "glBlendBarrierKHR", 20, -1 }, + /* GL_ARB_sparse_buffer */ + { "glBufferPageCommitmentARB", 43, -1 }, + { "glNamedBufferPageCommitmentARB", 43, -1 }, + { NULL, 0, -1 } }; |