From f2023307bcac6e40192cb1d0309da7024505b7df Mon Sep 17 00:00:00 2001 From: TelePete <5140047+TelePete@users.noreply.github.com> Date: Mon, 10 Nov 2025 20:13:38 +0100 Subject: [PATCH] Fix error in shader_functions abbr popup When hovering over vec_uint_type the popup claims that it can accept a float instead of a uint. This pr fixes this error. The top of the page states correctly that it accepts a uint, uvec2, uvec3, or uvec4. --- tutorials/shaders/shader_reference/shader_functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/shaders/shader_reference/shader_functions.rst b/tutorials/shaders/shader_reference/shader_functions.rst index ebdb38e4012..21c6da573ea 100644 --- a/tutorials/shaders/shader_reference/shader_functions.rst +++ b/tutorials/shaders/shader_reference/shader_functions.rst @@ -4007,7 +4007,7 @@ Bitwise function descriptions .. |void| replace:: :abbr:`void (No return value.)` .. |vec_type| replace:: :abbr:`vec_type (Any of: float, vec2, vec3, vec4)` .. |vec_int_type| replace:: :abbr:`vec_int_type (Any of: int, ivec2, ivec3, ivec4)` -.. |vec_uint_type| replace:: :abbr:`vec_uint_type (Any of: float, uvec2, uvec3, uvec4)` +.. |vec_uint_type| replace:: :abbr:`vec_uint_type (Any of: uint, uvec2, uvec3, uvec4)` .. |vec_bool_type| replace:: :abbr:`vec_bool_type (Any of: bool, bvec2, bvec3, bvec4)` .. |gsampler2D| replace:: :abbr:`gsampler2D (Any of: sampler2D, isampler2D, uSampler2D)` .. |gsampler2DArray| replace:: :abbr:`gsampler2DArray (Any of: sampler2DArray, isampler2DArray, uSampler2DArray)`