mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
mesa: add missing count_scale attributes
The EXT_gpu_program_parameters spec says: <params> points to an array of 4*<count> values for both functions. Cc: mesa-stable Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20603>
This commit is contained in:
parent
37dcd18331
commit
1ab80eb061
1 changed files with 4 additions and 4 deletions
|
|
@ -12760,15 +12760,15 @@
|
|||
<function name="ProgramEnvParameters4fvEXT" deprecated="3.1" exec="dlist">
|
||||
<param name="target" type="GLenum"/>
|
||||
<param name="index" type="GLuint"/>
|
||||
<param name="count" type="GLsizei"/>
|
||||
<param name="params" type="const GLfloat *" count="4"/>
|
||||
<param name="count" type="GLsizei" counter="true"/>
|
||||
<param name="params" type="const GLfloat *" count="count" count_scale="4"/>
|
||||
</function>
|
||||
|
||||
<function name="ProgramLocalParameters4fvEXT" deprecated="3.1" exec="dlist">
|
||||
<param name="target" type="GLenum"/>
|
||||
<param name="index" type="GLuint"/>
|
||||
<param name="count" type="GLsizei"/>
|
||||
<param name="params" type="const GLfloat *" count="4"/>
|
||||
<param name="count" type="GLsizei" counter="true"/>
|
||||
<param name="params" type="const GLfloat *" count="count" count_scale="4"/>
|
||||
</function>
|
||||
</category>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue