Search Issue Tracker
Won't Fix
Votes
0
Found in
Issue ID
1408537
Regression
No
Volumetric fog denoising mode "Gaussian" adds square artifacts.
With certain fog setup, the volumetric denoising option "Gaussian" reduces the quality of the fog by adding filtering artifacts in the fog.
Repro steps:
- Open the scene "VolumetricFilterIssue" scene in the package attached
- Set the camera to look at an edge of the fog with a scale of 5x in the game view to view more clearly the issue.
- Toggle the denoising mode between "Gaussian" and None and observe changes in the scene view
- When using Gaussian, we can see square artifacts in the fog.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Deleting multiple Tags throws “NullReferenceException”, and "Retrieving array element that was out of bounds" errors when holding the Enter key
- Material Component has two horizontal lines under it when its foldouts are closed
- Some selected Mesh Renderer Materials lead to Assets folder when pinged
- Editor colors appear darkened out when HDR Display Output is enabled
- Default Mesh Renderer Material cannot be found in the Select Material window after removing it from the GameObject
Resolution Note:
When Gaussian is enabled, fetching from V-Buffer has "quadratic construction" disabled (in AtmosphericScattering.hlsl, line 280). This is because the quadratic construction is quite expensive doing 4x 3D texture fetches upon V-Buffer sampling and we don't want the added overhead on top of the Gaussian filter.