ludum_dare_48/res/shaders/player/vert.gls

13 lines
234 B
Text
Raw Permalink Normal View History

2024-08-07 05:03:38 +00:00
#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);
}