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