2017-12-09 21:12:55 +01:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
|
|
layout (location = 0) in vec3 inPos;
|
2017-12-21 21:28:31 +01:00
|
|
|
layout (location = 1) in vec2 inUV;
|
2017-12-09 21:12:55 +01:00
|
|
|
|
|
|
|
|
// todo: pass via specialization constant
|
|
|
|
|
#define SHADOW_MAP_CASCADE_COUNT 4
|
|
|
|
|
|
|
|
|
|
layout(push_constant) uniform PushConsts {
|
2017-12-21 21:28:31 +01:00
|
|
|
vec4 position;
|
2017-12-09 21:12:55 +01:00
|
|
|
uint cascadeIndex;
|
|
|
|
|
} pushConsts;
|
|
|
|
|
|
2024-10-06 15:17:11 +02:00
|
|
|
layout (set = 0, binding = 3) uniform UBO {
|
2017-12-09 21:12:55 +01:00
|
|
|
mat4[SHADOW_MAP_CASCADE_COUNT] cascadeViewProjMat;
|
|
|
|
|
} ubo;
|
|
|
|
|
|
2017-12-21 21:28:31 +01:00
|
|
|
layout (location = 0) out vec2 outUV;
|
|
|
|
|
|
2017-12-09 21:12:55 +01:00
|
|
|
void main()
|
|
|
|
|
{
|
2017-12-21 21:28:31 +01:00
|
|
|
outUV = inUV;
|
|
|
|
|
vec3 pos = inPos + pushConsts.position.xyz;
|
|
|
|
|
gl_Position = ubo.cascadeViewProjMat[pushConsts.cascadeIndex] * vec4(pos, 1.0);
|
2017-12-09 21:12:55 +01:00
|
|
|
}
|