summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2018-08-05 12:37:08 -0700
committerIan Romanick <[email protected]>2018-08-06 10:31:56 -0700
commit6229ee87c76a6bb4e2b4003ccbb01b5e4b9c9f65 (patch)
treeae2ac6f7b3ae77f2e6f07f91579e91328cbb1b53
parentb7946f67787cb7cf89483f6b72f35b5a14ea0fbc (diff)
mesa: fix make check for AMD_framebuffer_multisample_advanced
Signed-off-by: Ian Romanick <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107483 Fixes: 3d6900d76ef ("glapi: define AMD_framebuffer_multisample_advanced and add its functions") Reviewed-by: Marek Olšák <[email protected]> Cc: Vinson Lee <[email protected]>
-rw-r--r--src/mesa/main/tests/dispatch_sanity.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp
index 82eb61dcf73..449dd3652cc 100644
--- a/src/mesa/main/tests/dispatch_sanity.cpp
+++ b/src/mesa/main/tests/dispatch_sanity.cpp
@@ -1192,6 +1192,10 @@ const struct function common_desktop_functions_possible[] = {
{ "glMultiDrawArraysIndirectCountARB", 11, -1 },
{ "glMultiDrawElementsIndirectCountARB", 11, -1 },
+ /* GL_AMD_framebuffer_multisample_advanced */
+ { "glRenderbufferStorageMultisampleAdvancedAMD", 11, -1 },
+ { "glNamedRenderbufferStorageMultisampleAdvancedAMD", 11, -1 },
+
{ NULL, 0, -1 }
};
@@ -2682,6 +2686,10 @@ const struct function gles3_functions_possible[] = {
/* GL_EXT_window_rectangles */
{ "glWindowRectanglesEXT", 30, -1 },
+ /* GL_AMD_framebuffer_multisample_advanced */
+ { "glRenderbufferStorageMultisampleAdvancedAMD", 11, -1 },
+ { "glNamedRenderbufferStorageMultisampleAdvancedAMD", 11, -1 },
+
{ NULL, 0, -1 }
};