Planet-Miner/src/SimpleVertexShader.vertexshader
2023-11-29 14:01:37 -05:00

10 lines
172 B
Plaintext

#version 330 core
layout(location = 0) in vec3 vertexPosition_modelspace;
uniform mat4 MVP;
void main(){
gl_Position = MVP * vec4(vertexPosition_modelspace,1);
}