mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
13 lines
223 B
GLSL
13 lines
223 B
GLSL
|
#version 420 core
|
||
|
|
||
|
layout(location = 0) in vec2 inTexCoord;
|
||
|
|
||
|
layout(set = 0, binding = 0) uniform sampler2D inTexture;
|
||
|
|
||
|
layout(location = 0) out vec4 outColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
outColor = texture (inTexture, inTexCoord);
|
||
|
}
|