mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 22:46:35 +00:00
9593e4e8bb
Copies using the graphics pipeline, an input image and renders to an output image.
12 lines
211 B
GLSL
12 lines
211 B
GLSL
#version 420 core
|
|
|
|
layout(location = 0) in vec4 inPos;
|
|
layout(location = 1) in vec2 inTexCoord;
|
|
|
|
layout(location = 0) out vec2 outTexCoord;
|
|
|
|
void main() {
|
|
gl_Position = inPos;
|
|
outTexCoord = inTexCoord;
|
|
}
|
|
|