summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan Baker <[email protected]>2017-12-12 11:48:31 -0800
committerDylan Baker <[email protected]>2017-12-13 13:24:57 -0800
commite5d8ffdda6bf3cd6e0fd0b8ae82a0384b7424c0c (patch)
treec2a6df1ea238d881840c447c99587cde6fc847ca
parent5364e73624a8adfbfa82d883ce6ce36f250c8928 (diff)
mesa: Add glSpecializeShaderARB to common_desktop_functions
CC: Nicolai Hähnle <[email protected]> CC: Mark Janes <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104231 Fixes: 46b21b8f906 ("mesa: add GL_ARB_gl_spirv boilerplate") Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp3
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 b2ff35717b7..00754deb461 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -1020,6 +1020,9 @@ const struct function common_desktop_functions_possible[] = {
{ "glImportMemoryFdEXT", 45, -1 },
{ "glImportSemaphoreFdEXT", 45, -1 },
+ /* GL_ARB_gl_spirv */
+ { "glSpecializeShaderARB", 45, -1 },
+
{ NULL, 0, -1 }
};