glcolorconvert: Fix syntax error in detiling shader

Mesa compiler complains of:
    error: `rgba' redeclared

This regression got introduced by 674e643428, which introduce
colormatrix computation without revoing the pre-declaration of
rgba variable.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7231>
This commit is contained in:
Nicolas Dufresne 2024-07-24 16:52:21 -04:00 committed by GStreamer Marge Bot
parent f7337b7477
commit 96a2408147

View file

@ -448,7 +448,6 @@ static const struct shader_templ templ_AV12_to_RGB =
/* TILED semi-planar to RGB conversion */
static const gchar templ_TILED_SEMI_PLANAR_to_RGB_BODY[] =
" vec4 rgba;\n"
" vec4 yuva;\n"
" ivec2 texel;\n"
"\n"