[Bf-blender-cvs] [a2243f1b517] master: Debugging: change Undo/Redo redraw timer to include dependency graph update

Brecht Van Lommel noreply at git.blender.org
Tue Apr 7 23:44:18 CEST 2020


Commit: a2243f1b5178fde2a49e5536b674cae57c096659
Author: Brecht Van Lommel
Date:   Tue Apr 7 23:41:30 2020 +0200
Branches: master
https://developer.blender.org/rBa2243f1b5178fde2a49e5536b674cae57c096659

Debugging: change Undo/Redo redraw timer to include dependency graph update

This is often the slowest part and was not counted before.

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

M	source/blender/windowmanager/intern/wm_operators.c

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

diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 6d25874da45..a7578291a21 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -103,6 +103,7 @@
 
 #include "wm.h"
 #include "wm_draw.h"
+#include "wm_event_system.h"
 #include "wm_event_types.h"
 #include "wm_files.h"
 #include "wm_window.h"
@@ -3244,8 +3245,12 @@ static void redraw_timer_step(bContext *C,
     }
   }
   else { /* eRTUndo */
+    /* Undo and redo, including depsgraph update since that can be a
+     * significant part of the cost. */
     ED_undo_pop(C);
+    wm_event_do_refresh_wm_and_depsgraph(C);
     ED_undo_redo(C);
+    wm_event_do_refresh_wm_and_depsgraph(C);
   }
 }



More information about the Bf-blender-cvs mailing list