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
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
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.