diff options
author | Simon Ser <contact@emersion.fr> | 2024-04-19 10:23:08 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2024-05-01 00:47:59 +0200 |
commit | 72ed71877c31eb40b3c6850c076f7bb03f450d2e (patch) | |
tree | 7b7e22a58b321131a1380f825bd8f40d6a071328 /src | |
parent | 54258c1ee187e3eb092c096ba5ed58ce8302f859 (diff) |
glapi: fix param type in TexGenxOES
The spec [1] and _mesa_TexGenxOES both agree that it's GLfixed
instead of GLint.
[1]: https://registry.khronos.org/OpenGL/extensions/OES/OES_texture_cube_map.txt
Signed-off-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28825>
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/glapi/gen/OES_fixed_point.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/OES_fixed_point.xml b/src/mapi/glapi/gen/OES_fixed_point.xml index 355d730add8..a6bb47ef025 100644 --- a/src/mapi/glapi/gen/OES_fixed_point.xml +++ b/src/mapi/glapi/gen/OES_fixed_point.xml @@ -248,7 +248,7 @@ <function name="TexGenxOES" es1="1.0" desktop="false"> <param name="coord" type="GLenum"/> <param name="pname" type="GLenum"/> - <param name="param" type="GLint"/> + <param name="param" type="GLfixed"/> </function> <function name="TexGenxvOES" es1="1.0" desktop="false"> |