mesa: add missing count_scale attribute
The EXT_gpu_program_parameters spec says:
<params> points to an array of 4*<count> values
Fixes: a4e935f2d7 ("mesa: add EXT_dsa + EXT_gpu_program_parameters functions")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7943
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8025
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:
committed by
Marge Bot
parent
a84c40c6a4
commit
37dcd18331
@@ -1400,8 +1400,8 @@
|
||||
<param name="program" type="GLuint" />
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user