mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
8 lines
184 B
GLSL
8 lines
184 B
GLSL
#include "swizzle.glsl"
|
|
|
|
vec4 upsample_AYUV(in sampler2D tex, in vec2 texCoord, in ivec4 inReorderIdx)
|
|
{
|
|
vec4 yuva = texture(tex, texCoord);
|
|
|
|
return swizzle(yuva, inReorderIdx);
|
|
}
|