glapi: Annotate XML with exec="skip" for unimplemented functions.
Future patches will use this annotation when code generating _mesa_create_exec_table(), to determine which functions should be skipped because they aren't implemented by Mesa. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
@@ -11,7 +11,8 @@
|
||||
<enum name="NUM_PROGRAM_BINARY_FORMATS" value="0x87FE"/>
|
||||
<enum name="PROGRAM_BINARY_FORMATS" value="0x87FF"/>
|
||||
|
||||
<function name="GetProgramBinary" offset="assign" static_dispatch="false" es2="3.0">
|
||||
<function name="GetProgramBinary" offset="assign" static_dispatch="false"
|
||||
es2="3.0" exec="skip">
|
||||
<param name="program" type="GLuint"/>
|
||||
<param name="bufSize" type="GLsizei"/>
|
||||
<param name="length" type="GLsizei *"/>
|
||||
@@ -19,14 +20,16 @@
|
||||
<param name="binary" type="GLvoid *"/>
|
||||
</function>
|
||||
|
||||
<function name="ProgramBinary" offset="assign" static_dispatch="false" es2="3.0">
|
||||
<function name="ProgramBinary" offset="assign" static_dispatch="false"
|
||||
es2="3.0" exec="skip">
|
||||
<param name="program" type="GLuint"/>
|
||||
<param name="binaryFormat" type="GLenum"/>
|
||||
<param name="binary" type="const GLvoid *"/>
|
||||
<param name="length" type="GLsizei"/>
|
||||
</function>
|
||||
|
||||
<function name="ProgramParameteri" offset="assign" static_dispatch="false" es2="3.0">
|
||||
<function name="ProgramParameteri" offset="assign" static_dispatch="false"
|
||||
es2="3.0" exec="skip">
|
||||
<param name="program" type="GLuint"/>
|
||||
<param name="pname" type="GLenum"/>
|
||||
<param name="value" type="GLint"/>
|
||||
|
||||
Reference in New Issue
Block a user