procedural-3d-engine/shaders/glsl/shadowmappingcascade/depthpass.vert

25 lines
560 B
GLSL
Raw Normal View History

2017-12-09 21:12:55 +01:00
#version 450
layout (location = 0) in vec3 inPos;
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 {
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;
layout (location = 0) out vec2 outUV;
2017-12-09 21:12:55 +01:00
void main()
{
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
}