diff options
author | Francisco Jerez <currojerez@riseup.net> | 2016-10-18 14:53:20 -0700 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-10-24 09:08:28 +0100 |
commit | 293e4585587b6e080ad637ec765260782630a872 (patch) | |
tree | 16bf5555927de2ce6ac42624aa24d44b6f329c12 | |
parent | 5798d602e0d7604cef6b9772ce794b6c409ca011 (diff) | |
download | external_mesa3d-293e4585587b6e080ad637ec765260782630a872.zip external_mesa3d-293e4585587b6e080ad637ec765260782630a872.tar.gz external_mesa3d-293e4585587b6e080ad637ec765260782630a872.tar.bz2 |
glapi: Move PrimitiveBoundingBox and BlendBarrier definitions into ES3.2 category.
These two GLES 3.2 entry points were being defined in the category of
the ARB_ES3_2_compatibility and KHR_blend_equation_advanced extensions
respectively instead of in the ES3.2 category. Defining them in the
ES3.2 category makes sure that the gl_procs.py generator emits
declarations in the glprocs.h header file for the unsuffixed GLES-only
entry points that PrimitiveBoundingBoxARB and BlendBarrierKHR
respectively alias. This should avoid a compilation failure during
scons builds in combination with "mapi: export all GLES 3.2 functions
in libGLESv2.so".
Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
(cherry picked from commit 15a084a03998c5c86206137fdaf6f43b5f98485a)
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 5998ccf..00c9bb7 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -8296,6 +8296,23 @@ <!-- ARB extension 171 --> <xi:include href="ARB_pipeline_statistics_query.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> +<category name="es3.2"> + <!-- This should be in es_EXT, but this file is included first and + the alias doesn't work otherwise. --> + <function name="PrimitiveBoundingBox" es2="3.2" desktop="false"> + <param name="minX" type="GLfloat"/> + <param name="minY" type="GLfloat"/> + <param name="minZ" type="GLfloat"/> + <param name="minW" type="GLfloat"/> + <param name="maxX" type="GLfloat"/> + <param name="maxY" type="GLfloat"/> + <param name="maxZ" type="GLfloat"/> + <param name="maxW" type="GLfloat"/> + </function> + + <function name="BlendBarrier" es2="3.2"/> +</category> + <category name="KHR_blend_equation_advanced" number="174"> <enum name="BLEND_ADVANCED_COHERENT_KHR" value="0x9285"/> @@ -8316,7 +8333,6 @@ <enum name="HSL_COLOR_KHR" value="0x92AF"/> <enum name="HSL_LUMINOSITY_KHR" value="0x92B0"/> - <function name="BlendBarrier" es2="3.2"/> <function name="BlendBarrierKHR" alias="BlendBarrier" es2="2.0"/> </category> @@ -8332,18 +8348,6 @@ <size name="Get" mode="get"/> </enum> - <!-- This should be in es_EXT, but this file is included first and - the alias doesn't work otherwise. --> - <function name="PrimitiveBoundingBox" es2="3.2" desktop="false"> - <param name="minX" type="GLfloat"/> - <param name="minY" type="GLfloat"/> - <param name="minZ" type="GLfloat"/> - <param name="minW" type="GLfloat"/> - <param name="maxX" type="GLfloat"/> - <param name="maxY" type="GLfloat"/> - <param name="maxZ" type="GLfloat"/> - <param name="maxW" type="GLfloat"/> - </function> <function name="PrimitiveBoundingBoxARB" alias="PrimitiveBoundingBox"> <param name="minX" type="GLfloat"/> <param name="minY" type="GLfloat"/> |