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:
Pierre-Eric Pelloux-Prayer 2023-01-10 10:04:40 +01:00 committed by Marge Bot
parent 37dcd18331
commit 1ab80eb061

View file

@ -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>