[Bf-blender-cvs] [cedc80c08d8] blender-v3.0-release: Fix Cycles denoising depth pass missing in compositor

Brecht Van Lommel noreply at git.blender.org
Mon Nov 1 08:37:45 CET 2021


Commit: cedc80c08d8340cb7db8af52051f9a6f9469fcb7
Author: Brecht Van Lommel
Date:   Sun Oct 31 21:59:21 2021 +0100
Branches: blender-v3.0-release
https://developer.blender.org/rBcedc80c08d8340cb7db8af52051f9a6f9469fcb7

Fix Cycles denoising depth pass missing in compositor

===================================================================

M	intern/cycles/blender/addon/engine.py

===================================================================

diff --git a/intern/cycles/blender/addon/engine.py b/intern/cycles/blender/addon/engine.py
index c402df12ba9..e5bb77a834a 100644
--- a/intern/cycles/blender/addon/engine.py
+++ b/intern/cycles/blender/addon/engine.py
@@ -233,6 +233,7 @@ def list_render_passes(scene, srl):
     if crl.denoising_store_passes:
         yield ("Denoising Normal",          "XYZ", 'VECTOR')
         yield ("Denoising Albedo",          "RGB", 'COLOR')
+        yield ("Denoising Depth",           "Z", 'VALUE')
 
     # Custom AOV passes.
     for aov in srl.aovs:



More information about the Bf-blender-cvs mailing list