mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
27 lines
682 B
GLSL
27 lines
682 B
GLSL
|
#version 450 core
|
||
|
|
||
|
#include "color_convert_generic.glsl"
|
||
|
#include "upsample_ayuv.glsl"
|
||
|
#include "swizzle.glsl"
|
||
|
|
||
|
layout(location = 0) in vec2 inTexCoord;
|
||
|
|
||
|
layout(set = 0, binding = 0) uniform sampler2D inTexture0;
|
||
|
layout(set = 0, binding = 1) uniform reorder {
|
||
|
ivec4 in_reorder_idx;
|
||
|
ivec4 out_reorder_idx;
|
||
|
ivec2 texSize;
|
||
|
ColorMatrices matrices;
|
||
|
};
|
||
|
|
||
|
layout(location = 0) out vec4 outColor0;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec4 yuva = upsample_AYUV (inTexture0, inTexCoord, in_reorder_idx);
|
||
|
vec4 rgba = vec4(1.0);
|
||
|
rgba.a = yuva.a;
|
||
|
rgba.rgb = color_convert_texel (yuva.xyz, matrices);
|
||
|
outColor0 = /*vec4(yuv.x * 0.0, yuv.y * 0.0, yuv.z * 1.0, 1.0);*/swizzle(rgba, out_reorder_idx);
|
||
|
}
|