[vulkan] Add some debug to the cascade shadows

It turns out what I thought was a cascade selection bug was just very
bad choice of cascade steps: factors of 8 just don't work nicely. I'm
not sure that simple factors work all that well, either. I need to make
the cascade system configurable and probably support more cascades.
This commit is contained in:
Bill Currie 2024-02-01 18:50:38 +09:00
parent 2996690bd1
commit 140fe93a9c
2 changed files with 16 additions and 0 deletions

View file

@ -19,4 +19,17 @@ shadow (uint map_id, uint layer, uint mat_id, vec4 pos, vec3 lpos)
return texture (shadow_map[map_id], vec4 (uv, layer + ind, depth));
}
vec4
debug_shadow (vec4 pos)
{
float fd = pos.w;
uint ind = fd > CascadeDepths[1]
? fd > CascadeDepths[0] ? 0 : 1
: fd > CascadeDepths[2] ? 2 : 3;
ind += 1;
return vec4 (ind & 1, ind & 2, ind & 4, 1);
}
//#define DEBUG_SHADOW(p) debug_shadow(p)
#include "lighting_main.finc"

View file

@ -66,6 +66,9 @@ main (void)
if (fog.w > 0) {
col = FogTransmit (col, fog, r[1]);
}
#ifdef DEBUG_SHADOW
col = DEBUG_SHADOW(p);
#endif
light += I * col.w * col.xyz;
}
//light = max (light, minLight);