2016-02-16 15:07:25 +01:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
|
|
layout (location = 0) in vec3 inPos;
|
|
|
|
|
|
|
|
|
|
layout (binding = 0) uniform UBO
|
|
|
|
|
{
|
|
|
|
|
mat4 projection;
|
|
|
|
|
mat4 model;
|
2024-01-07 17:03:39 +01:00
|
|
|
mat4 normal;
|
|
|
|
|
mat4 view;
|
2016-02-16 15:07:25 +01:00
|
|
|
} ubo;
|
|
|
|
|
|
|
|
|
|
layout (location = 0) out vec3 outUVW;
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
|
|
|
|
outUVW = inPos;
|
2024-01-07 17:03:39 +01:00
|
|
|
// Remove translation from view matrix
|
|
|
|
|
mat4 viewMat = mat4(mat3(ubo.view));
|
|
|
|
|
gl_Position = ubo.projection * viewMat * ubo.model * vec4(inPos.xyz, 1.0);
|
2016-02-16 15:07:25 +01:00
|
|
|
}
|