grk_5sem_labs/cw 3/shaders/shader_3_2.vert

15 lines
297 B
GLSL
Raw Normal View History

2023-11-18 02:25:43 +01:00
#version 430 core
layout(location = 0) in vec3 vertexPosition;
layout(location = 1) in vec3 vertexNormal;
layout(location = 2) in vec2 vertexTexCoord;
uniform mat4 transformation;
out vec3 normal;
void main()
{
normal=vertexNormal;
gl_Position = transformation * vec4(vertexPosition, 1.0);
}