vulkan: Handle FA with all -inf mask values (#16447)

This commit is contained in:
Jeff Bolz
2025-10-20 22:16:08 -05:00
committed by GitHub
parent 6de8ed7519
commit fb349848f3
4 changed files with 8 additions and 4 deletions
@@ -91,7 +91,7 @@ void main() {
L = L*ms + vs;
}
L = 1.0 / L;
L = (L == 0.0) ? 0.0 : 1.0 / L;
// D dimension is split across workgroups in the y dimension
uint d = tid + gl_WorkGroupID.y * BLOCK_SIZE;