From: Kenneth Graunke Date: Fri, 8 Jul 2016 18:42:08 +0000 (-0700) Subject: mapi: Add PatchParameteriOES and PatchParameteriEXT. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=73554c47e0795a8f15a351b80498c60cf22b2535;p=mesa.git mapi: Add PatchParameteriOES and PatchParameteriEXT. The OES_tessellation_shader and EXT_tessellation_shader specifications have suffixed names. These are identical to the core function, so just alias them. Signed-off-by: Kenneth Graunke Reviewed-by: Ian Romanick --- diff --git a/src/mapi/glapi/gen/ARB_tessellation_shader.xml b/src/mapi/glapi/gen/ARB_tessellation_shader.xml index cc55f9bb889..e26f227b618 100644 --- a/src/mapi/glapi/gen/ARB_tessellation_shader.xml +++ b/src/mapi/glapi/gen/ARB_tessellation_shader.xml @@ -58,6 +58,16 @@ + + + + + + + + + + diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index ee3c3d4abe7..cfbf70dc5f0 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -2594,5 +2594,8 @@ const struct function gles31_functions_possible[] = { /* GL_OES_geometry_shader */ { "glFramebufferTextureOES", 31, -1}, + /* GL_OES_tessellation_shader */ + { "glPatchParameteriOES", 31, -1 }, + { NULL, 0, -1 }, };