PlanetEditor/grk/cw 6/shaders/shader_sun.vert

22 lines
507 B
GLSL
Raw Normal View History

2023-12-18 16:15:08 +01:00
#version 430 core
layout(location = 0) in vec3 vertexPosition;
2024-01-14 19:42:19 +01:00
layout(location = 1) in vec3 vertexNormal;
layout(location = 2) in vec2 vertexTexCoord;
2023-12-18 16:15:08 +01:00
uniform mat4 transformation;
2024-01-14 19:42:19 +01:00
uniform mat4 modelMatrix;
2023-12-18 16:15:08 +01:00
2024-01-14 19:42:19 +01:00
out vec3 vecNormal;
out vec3 worldPos;
out vec2 vtc;
2023-12-18 16:15:08 +01:00
void main()
{
worldPos = (modelMatrix * vec4(vertexPosition, 1)).xyz;
vecNormal = (modelMatrix * vec4(vertexNormal, 0)).xyz;
2023-12-18 16:15:08 +01:00
gl_Position = transformation * vec4(vertexPosition, 1.0);
vtc = vec2(vertexTexCoord.x, 1.0 - vertexTexCoord.y);
2023-12-18 16:15:08 +01:00
}