BlockGame/blocks/vertex.shader
2022-02-05 21:44:31 +01:00

16 lines
462 B
GLSL

R"(#version 330 core
// Input vertex data, different for all executions of this shader.
layout(location = 0) in vec3 vertexPosition_modelspace;
//// Values that stay constant for the whole mesh.
uniform mat4 MVP;
uniform mat4 translation;
out vec3 FragPos;
void main(){
// Output position of the vertex, in clip space : MVP * position
vec4 pos = MVP * translation * vec4(vertexPosition_modelspace,1);
gl_Position = pos;
FragPos = pos.xyz;
})";