Commit: cefb0122b4973d8311955a163de4cf16b475edc1 Author: Brecht Van Lommel Date: Thu Oct 28 15:44:50 2021 +0200 Branches: blender-v3.0-release https://developer.blender.org/rBcefb0122b4973d8311955a163de4cf16b475edc1
Fix T92526: Cycles viewport denoiser red tint after recent changes =================================================================== M intern/cycles/scene/film.cpp =================================================================== diff --git a/intern/cycles/scene/film.cpp b/intern/cycles/scene/film.cpp index b6480fa64f1..591f309384e 100644 --- a/intern/cycles/scene/film.cpp +++ b/intern/cycles/scene/film.cpp @@ -194,6 +194,7 @@ void Film::device_update(Device *device, DeviceScene *dscene, Scene *scene) /* Mark passes as unused so that the kernel knows the pass is inaccessible. */ kfilm->pass_denoising_normal = PASS_UNUSED; kfilm->pass_denoising_albedo = PASS_UNUSED; + kfilm->pass_denoising_depth = PASS_UNUSED; kfilm->pass_sample_count = PASS_UNUSED; kfilm->pass_adaptive_aux_buffer = PASS_UNUSED; kfilm->pass_shadow_catcher = PASS_UNUSED; _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
