🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

Latest pcss Activity

Implementing nvidia's PCSS

So I have made some progress by computing a light view position in the vertex shader and then putting it into the 0.0 to 1.0 range like this:

 output.lightViewPosition = mul(input.position, worldMatrix);
 output.lightViewPosition = mul(output.lightViewPosition, lightViewMatrix);
 output.lightViewPos…
3,696 views
Advertisement
Advertisement
Advertisement