Delt06 / unity-pcf-poisson

PCF (Percentage Closer Filtering) via Poisson sampling for Unity and Universal Render Pipeline.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom Unity PCF (Poisson Sampling)

PCF (Percentage Closer Filtering) via Poisson sampling for Unity and Universal Render Pipeline.

Used to prevent aliasing, which is one of the problems of shadow mapping.

Built with Unity 2021.3.0f1 and URP v12.1.6.

Preview

Implementation

The project contains:

  • A render feature to configure the poisson sampling parameters:
    • Spread
    • Mode
      • Disabled
      • Poisson Sampling
      • Poisson Sampling (Stratified)
      • Poisson Sampling (Rotated)
    • Samples Count (4 or 16)
  • Lit Shader, which uses Poisson sampling to access shadow maps. Supports the following features:
    • Lambertian lighting
    • Shadow receiving/casting
    • Ambient lighting
  • Editor utility to generate 3D Texture to sample rotations in the shader.
    • It can be accessed in Window/Rendering/Rotated Poisson Sampling Texture Generator.
    • The render feature uses the bundled 32x32x32 texture by default.

Examples

Shadow resolution is set to 4096 in all examples.

Hard shadows (built-in)

Hard Shadows

Soft shadows (built-in)

Soft Shadows

Poisson Sampling

  • Spread: 1200
  • Samples 16

Poisson (Default, 16)

Poisson Sampling

  • Spread: 1500
  • Samples 4

Poisson (Default, 4)

Poisson Sampling (Stratified)

  • Spread: 2000
  • Samples: 16

Poisson (Stratified)

Poisson Sampling (Rotated)

  • Spread: 1000
  • Samples: 16

Poisson (Rotated)

References

About

PCF (Percentage Closer Filtering) via Poisson sampling for Unity and Universal Render Pipeline.


Languages

Language:ShaderLab 56.0%Language:C# 44.0%