grakopro/cw_8/shaders/pbr.vert

25 lines
517 B
GLSL
Raw Permalink Normal View History

2024-01-23 02:09:19 +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;
uniform mat4 modelMatrix;
uniform vec3 cameraPos;
out vec3 Normal;
out vec3 worldPos;
out vec2 TexCoords;
void main()
{
2024-01-24 23:34:16 +01:00
TexCoords = vertexTexCoord;
2024-01-23 02:09:19 +01:00
worldPos = vec3(modelMatrix * vec4(vertexPosition,1));
Normal = normalize((modelMatrix * vec4(vertexNormal,0)).xyz);
2024-01-24 23:34:16 +01:00
gl_Position = transformation * vec4(vertexPosition, 1.0);
2024-01-23 02:09:19 +01:00
}