gstreamer/ext/vulkan/shaders/identity.vert
Matthew Waters 9593e4e8bb vulkan: add a new image copying element
Copies using the graphics pipeline, an input image and renders to an
output image.
2019-06-04 09:03:44 +00:00

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;
}