Moved shaders to new directory
This commit is contained in:
parent
0b3f8340e3
commit
99b226237a
1244 changed files with 0 additions and 0 deletions
29
shaders/glsl/shadowmappingcascade/depthpass.vert
Normal file
29
shaders/glsl/shadowmappingcascade/depthpass.vert
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
#version 450
|
||||
|
||||
layout (location = 0) in vec3 inPos;
|
||||
layout (location = 1) in vec2 inUV;
|
||||
|
||||
// todo: pass via specialization constant
|
||||
#define SHADOW_MAP_CASCADE_COUNT 4
|
||||
|
||||
layout(push_constant) uniform PushConsts {
|
||||
vec4 position;
|
||||
uint cascadeIndex;
|
||||
} pushConsts;
|
||||
|
||||
layout (binding = 0) uniform UBO {
|
||||
mat4[SHADOW_MAP_CASCADE_COUNT] cascadeViewProjMat;
|
||||
} ubo;
|
||||
|
||||
layout (location = 0) out vec2 outUV;
|
||||
|
||||
out gl_PerVertex {
|
||||
vec4 gl_Position;
|
||||
};
|
||||
|
||||
void main()
|
||||
{
|
||||
outUV = inUV;
|
||||
vec3 pos = inPos + pushConsts.position.xyz;
|
||||
gl_Position = ubo.cascadeViewProjMat[pushConsts.cascadeIndex] * vec4(pos, 1.0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue