mesa: fix make check for AMD_framebuffer_multisample_advanced

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107483
Fixes: 3d6900d76e ("glapi: define AMD_framebuffer_multisample_advanced and add its functions")
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Cc: Vinson Lee <vlee@freedesktop.org>
This commit is contained in:
Ian Romanick
2018-08-05 12:37:08 -07:00
parent b7946f6778
commit 6229ee87c7

View File

@@ -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 }
};