Blender Git Commit Log
Git Commits -> Revision c8293d6
Revision c8293d6 by Clément Foucault (master) May 5, 2021, 16:40 (GMT) |
Fix T86037 EEVEE: SSR option changes render passes result This was caused by the SSR option resetting the accumulation. But the render passes were only cleared in the init phase. This means that when SSR was resetting the `taa_render_sample` the actual renderpasses would still contains 1 sample. This means the renderpasses were always divided by the wrong number of samples. The fix is to clear just before accumulation if the sample is 1. The fact that it works for motion blur is kind of a blessing. This is because we check `stl->effects->ssr_was_valid_double_buffer` before resetting the sampling. So this only happens on the first motion step and does not affect the rest of the rendering. Differential Revision: https://developer.blender.org/D11033 |
Commit Details:
Full Hash: c8293d6258e2b74ca29356dd9deca59c127eed3c
Parent Commit: 5f7f90d
Lines Changed: +79, -79
7 Modified Paths:
/source/blender/draw/engines/eevee/eevee_materials.c (+33, -31) (Diff)
/source/blender/draw/engines/eevee/eevee_mist.c (+8, -9) (Diff)
/source/blender/draw/engines/eevee/eevee_occlusion.c (+8, -7) (Diff)
/source/blender/draw/engines/eevee/eevee_renderpasses.c (+2, -0) (Diff)
/source/blender/draw/engines/eevee/eevee_screen_raytrace.c (+9, -10) (Diff)
/source/blender/draw/engines/eevee/eevee_shadows.c (+8, -10) (Diff)
/source/blender/draw/engines/eevee/eevee_volumes.c (+11, -12) (Diff)
/source/blender/draw/engines/eevee/eevee_mist.c (+8, -9) (Diff)
/source/blender/draw/engines/eevee/eevee_occlusion.c (+8, -7) (Diff)
/source/blender/draw/engines/eevee/eevee_renderpasses.c (+2, -0) (Diff)
/source/blender/draw/engines/eevee/eevee_screen_raytrace.c (+9, -10) (Diff)
/source/blender/draw/engines/eevee/eevee_shadows.c (+8, -10) (Diff)
/source/blender/draw/engines/eevee/eevee_volumes.c (+11, -12) (Diff)