diff options
author | Paul Berry <[email protected]> | 2012-10-22 16:49:24 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2012-11-06 12:57:42 -0800 |
commit | 3c474657f7dd2c565eff9fe74a1dc5b2c1c92007 (patch) | |
tree | 04e73a51de9cf485739c67298b9a4717120023fd /src/mapi/glapi/gen/es_EXT.xml | |
parent | d1b2bd5191db39fa1fc5186b146dcbf05e7847c9 (diff) |
glapi: Annotate XML with exec="{es,check}" for special GLES1 functions.
Future patches will use this annotation when code generating
_mesa_create_exec_table(), to determine which functions should be
dispatched to ES-specific implementations. exec="es" indicates that
the ES-specific implementation has a name beginning with "_es_"
(e.g. _es_QueryMatrixxOES), and exec="check" indicates that the
ES-specific implementation has a name beginning with "_check_"
(e.g. _check_GetTexGenxvOES).
Reviewed-by: Jordan Justen <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/es_EXT.xml')
-rw-r--r-- | src/mapi/glapi/gen/es_EXT.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml index e66a5ffb83f..e86f2eda209 100644 --- a/src/mapi/glapi/gen/es_EXT.xml +++ b/src/mapi/glapi/gen/es_EXT.xml @@ -115,7 +115,7 @@ </function> <function name="DrawTexxOES" offset="assign" static_dispatch="false" - es1="1.0"> + es1="1.0" exec="es"> <param name="x" type="GLfixed"/> <param name="y" type="GLfixed"/> <param name="z" type="GLfixed"/> @@ -124,7 +124,7 @@ </function> <function name="DrawTexxvOES" offset="assign" static_dispatch="false" - es1="1.0"> + es1="1.0" exec="es"> <param name="coords" type="const GLfixed *" count="5"/> </function> @@ -359,7 +359,7 @@ <!-- optional for es1.0 --> <category name="GL_OES_query_matrix" number="16"> <function name="QueryMatrixxOES" offset="assign" static_dispatch="false" - es1="1.0"> + es1="1.0" exec="es"> <param name="mantissa" type="GLfixed *" count="16" /> <param name="exponent" type="GLint *" count="16" /> <return type="GLbitfield"/> |