Demo: Exponential Variance Shadow Map with Mip Maps

Started by
4 comments, last by VirT 12 years, 2 months ago
Demo:
Exponential Variance Shadow Map
Screenshots:

evsm1.jpg
evsm2.jpg
Docs to read:
There are two similar techniques in the last document : VSM+SAT and CSM+MIPs. But VSM has too many artifacts, CSM works really bad and slow (don't like it at all).
What we do is take filter size computation from PCSS + EVSM filter + possibility change it by building MIP level.

Algorithm:

  • Render a scene at a regular Shadow Map with a MultiSampling.
  • Build first mip level for EVSM by take an avarage value of all samples. Convert depth value to EVSM value.
  • Blur first Shadow Map mip level into the second one.
  • Calculate filter size based on a current depth and several samples from the regular Shadow Map around it.
  • Based on this filter size sample EVSM texture between the first and the second mip level.

As you can see, we don't need full mip maps chain. Two mips are enough. We get correct values using trilinear filtration between mip maps.

Disadvantages:

  • The main is memory. You need four component float texture. And you need shadow map with multisampling also. It requires alot of memory.
  • Aliasing from a far distance or acute view angle. We use SampleLevel and a standart texture filtration doesn't work. I think you can implement it by using ddx and ddy. If you know how to do it let me know.
Advertisement
Interesting, but the change from hard to soft shadow filtering is extremely abrupt and looks fairly jarring.
Looks good can the same effect be applied in directx9 or 10? Or are you using specific DX11 shaders?

Thanks,
-Toaster
[color=#282828][font=helvetica, arial, verdana, tahoma, sans-serif]

Looks good can the same effect be applied in directx9 or 10? Or are you using specific DX11 shaders?

[/font][/quote]
Yes, you can use DX9 as well. My version uses MultiSampled ShadowMap, but it is not necessary.

It's an interesting approach, and definitely worth pursuing. But you would need to figure out how to eliminate the bleeding that occurs around the arms/torso area, since it really screws up the look.
[color=#282828][font=helvetica, arial, verdana, tahoma, sans-serif]

But you would need to figure out how to eliminate the bleeding that occurs around the arms/torso area, since it really screws up the look.

[/font][/quote]
It's true, there are no perfect techniques.
But I think it doesn't look so bad when it has textures. It's hard to notice this bleeding with a full shading.

This topic is closed to new replies.

Advertisement