GRK/cw 4/shaders/shader_4_sun.vert
secret_dude a7bd7ecb75 master
2022-01-12 16:07:16 +01:00

16 lines
312 B
GLSL

#version 430 core
layout(location = 0) in vec3 vertexPosition;
layout(location = 1) in vec2 vertexTexCoord;
layout(location = 2) in vec3 vertexNormal;
uniform mat4 transformation;
out vec3 interpNormal;
void main()
{
gl_Position = transformation * vec4(vertexPosition, 1.0);
interpNormal = vertexNormal;
}