Grafika_Komputerowa_Interst.../cw 7/shaders/shader_5_sun.vert

16 lines
308 B
GLSL
Raw Normal View History

2024-01-12 18:23:52 +01:00
#version 430 core
layout(location = 0) in vec3 vertexPosition;
2024-02-07 22:36:48 +01:00
layout(location = 1) in vec3 vertexNormal;
layout(location = 2) in vec2 vertexTexCoord;
2024-01-12 18:23:52 +01:00
2024-01-12 20:37:53 +01:00
2024-02-07 22:36:48 +01:00
uniform mat4 transformation;
out vec2 TexCoords;
2024-01-12 18:23:52 +01:00
void main()
{
2024-02-07 22:36:48 +01:00
gl_Position = transformation * vec4(vertexPosition, 1.0);
TexCoords = vertexTexCoord;
2024-01-12 18:23:52 +01:00
}