gallium/auxiliary/vl: Fix typo in cs_create_shader pseudo-code comment

Fix typos in the size of proj, and chroma_proj, in the GLSL pseudo-code
comment portion of cs_create_shader.

Thanks Benjamin Cheng <benjamin.cheng@amd.com> for finding it.

Signed-off-by: Thong Thai <thong.thai@amd.com>
Reviewed-by: David Rosca <david.rosca@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41090>
This commit is contained in:
Thong Thai 2026-05-06 13:34:58 +00:00 committed by Marge Bot
parent 829130daad
commit fa47f2ac8a

View file

@ -92,8 +92,8 @@ static nir_def *cs_create_shader(struct vl_compositor *c, struct cs_shader *s)
vec2 subsample_ratio; // params[5].zw
vec2 coord_clamp; // params[6].xy
vec2 chroma_clamp; // params[6].zw
vec4 proj[3]; // params[7-8]
vec4 chroma_proj[3]; // params[9-10]
vec4 proj[2]; // params[7-8]
vec4 chroma_proj[2]; // params[9-10]
vec4 rgb2yuv[3]; // params[11-13]
vec4 primaries[3]; // params[14-16]
};