#version 460 layout (location = 0) in vec2 pos; layout (location = 1) in vec2 texCoord; out vec2 TexCoord; void main() { gl_Position = vec4(pos.x, pos.y, 0.0, 1.0); TexCoord = texCoord; }