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;
|
2024-02-08 01:12:49 +01:00
|
|
|
layout(location = 3) in vec3 vertexTangent;
|
|
|
|
layout(location = 4) in vec3 vertexBitangent;
|
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
|
|
|
|
2024-02-08 01:12:49 +01:00
|
|
|
uniform vec3 lightPos;
|
|
|
|
uniform vec3 cameraPos;
|
|
|
|
uniform vec3 sunDir;
|
|
|
|
|
|
|
|
out vec3 viewDirTS;
|
|
|
|
out vec3 lightDirTS;
|
|
|
|
out vec3 sunDirTS;
|
|
|
|
|
2023-12-18 16:15:08 +01:00
|
|
|
void main()
|
|
|
|
{
|
2024-01-14 19:42:19 +01:00
|
|
|
worldPos = (modelMatrix * vec4(vertexPosition, 1)).xyz;
|
2024-01-13 22:59:27 +01:00
|
|
|
vecNormal = (modelMatrix * vec4(vertexNormal, 0)).xyz;
|
2024-02-08 01:12:49 +01:00
|
|
|
|
2023-12-18 16:15:08 +01:00
|
|
|
gl_Position = transformation * vec4(vertexPosition, 1.0);
|
2024-01-14 19:42:19 +01:00
|
|
|
|
2024-01-14 22:38:12 +01:00
|
|
|
vtc = vec2(vertexTexCoord.x, 1.0 - vertexTexCoord.y);
|
2024-02-08 01:12:49 +01:00
|
|
|
|
|
|
|
vec3 w_tangent = normalize(mat3(modelMatrix) * vertexTangent);
|
|
|
|
vec3 w_bitangent = normalize(mat3(modelMatrix) * vertexBitangent);
|
|
|
|
mat3 TBN = transpose(mat3(w_tangent, w_bitangent, vecNormal));
|
|
|
|
|
|
|
|
vec3 V = normalize(cameraPos - worldPos);
|
|
|
|
viewDirTS = TBN * V;
|
|
|
|
vec3 L = normalize(lightPos - worldPos);
|
|
|
|
lightDirTS = TBN * L;
|
|
|
|
sunDirTS = TBN * sunDir;
|
2023-12-18 16:15:08 +01:00
|
|
|
}
|