Files
RT_GPU/shaders/vertex.vert
2025-02-13 23:18:04 +01:00

9 lines
179 B
GLSL

layout(location = 0) in vec2 aPos;
layout(location = 1) in vec2 aTexCoord;
out vec2 TexCoords;
void main() {
TexCoords = aTexCoord;
gl_Position = vec4(aPos, 0.0, 1.0);
}