ludum_dare_42/res/shaders/s2t/vert.gls
2024-08-07 04:59:58 +00:00

13 lines
No EOL
222 B
Text

#version 330 core
uniform mat4 mvp;
layout (location = 0) in vec3 vertices;
layout (location = 1) in vec2 itexCoords;
out vec2 texCoords;
void main() {
texCoords = itexCoords;
gl_Position = mvp * vec4(vertices, 1);
}