[Bf-blender-cvs] [efc9faef23f] blender-v3.3-release: Fix T98954: Color management is very slow with sequencer sound

Richard Antalik noreply at git.blender.org
Tue Aug 23 15:09:13 CEST 2022


Commit: efc9faef23fdbc3e3eb0d88ed096aa269a294f01
Author: Richard Antalik
Date:   Tue Aug 23 14:56:38 2022 +0200
Branches: blender-v3.3-release
https://developer.blender.org/rBefc9faef23fdbc3e3eb0d88ed096aa269a294f01

Fix T98954: Color management is very slow with sequencer sound

Function `rna_ColorManagement_update` tagged unnecesary updates.

Reviewed By: sergey, brecht

Differential Revision: https://developer.blender.org/D15710

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

M	source/blender/makesrna/intern/rna_color.c

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

diff --git a/source/blender/makesrna/intern/rna_color.c b/source/blender/makesrna/intern/rna_color.c
index 863238103d7..b68d87587e7 100644
--- a/source/blender/makesrna/intern/rna_color.c
+++ b/source/blender/makesrna/intern/rna_color.c
@@ -682,7 +682,6 @@ static void rna_ColorManagement_update(Main *UNUSED(bmain), Scene *UNUSED(scene)
   }
 
   if (GS(id->name) == ID_SCE) {
-    DEG_id_tag_update(id, 0);
     WM_main_add_notifier(NC_SCENE | ND_SEQUENCER, NULL);
   }
 }



More information about the Bf-blender-cvs mailing list