mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 06:50:11 +01:00
mesa/glthread: add async support to ARB_viewport_array functions
v2: fix attribute name, it is count_scale not scale_count Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
a63919f848
commit
ca41ecf838
1 changed files with 5 additions and 5 deletions
|
|
@ -32,7 +32,7 @@
|
|||
<function name="ViewportArrayv">
|
||||
<param name="first" type="GLuint"/>
|
||||
<param name="count" type="GLsizei"/>
|
||||
<param name="v" type="const GLfloat *"/>
|
||||
<param name="v" type="const GLfloat *" count="count" count_scale="4"/>
|
||||
</function>
|
||||
<function name="ViewportIndexedf">
|
||||
<param name="index" type="GLuint"/>
|
||||
|
|
@ -43,12 +43,12 @@
|
|||
</function>
|
||||
<function name="ViewportIndexedfv">
|
||||
<param name="index" type="GLuint"/>
|
||||
<param name="v" type="const GLfloat *"/>
|
||||
<param name="v" type="const GLfloat *" count="4"/>
|
||||
</function>
|
||||
<function name="ScissorArrayv">
|
||||
<param name="first" type="GLuint"/>
|
||||
<param name="count" type="GLsizei"/>
|
||||
<param name="v" type="const int *"/>
|
||||
<param name="v" type="const int *" count="count" count_scale="4"/>
|
||||
</function>
|
||||
<function name="ScissorIndexed">
|
||||
<param name="index" type="GLuint"/>
|
||||
|
|
@ -59,12 +59,12 @@
|
|||
</function>
|
||||
<function name="ScissorIndexedv">
|
||||
<param name="index" type="GLuint"/>
|
||||
<param name="v" type="const GLint *"/>
|
||||
<param name="v" type="const GLint *" count="4"/>
|
||||
</function>
|
||||
<function name="DepthRangeArrayv">
|
||||
<param name="first" type="GLuint"/>
|
||||
<param name="count" type="GLsizei"/>
|
||||
<param name="v" type="const GLclampd *"/>
|
||||
<param name="v" type="const GLclampd *" count="count" count_scale="2"/>
|
||||
</function>
|
||||
<function name="DepthRangeIndexed">
|
||||
<param name="index" type="GLuint"/>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue