[Bf-blender-cvs] [f653a4f3499] master: Cleanup: remove outdated comments

Jacques Lucke noreply at git.blender.org
Tue Aug 18 15:41:41 CEST 2020


Commit: f653a4f34997adbb856db0aad49ffe72111603e4
Author: Jacques Lucke
Date:   Tue Aug 18 15:41:26 2020 +0200
Branches: master
https://developer.blender.org/rBf653a4f34997adbb856db0aad49ffe72111603e4

Cleanup: remove outdated comments

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

M	source/blender/depsgraph/intern/depsgraph_eval.cc

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

diff --git a/source/blender/depsgraph/intern/depsgraph_eval.cc b/source/blender/depsgraph/intern/depsgraph_eval.cc
index a11594a019c..b4c93fb12af 100644
--- a/source/blender/depsgraph/intern/depsgraph_eval.cc
+++ b/source/blender/depsgraph/intern/depsgraph_eval.cc
@@ -52,7 +52,6 @@ void DEG_evaluate_on_refresh(Main *bmain, Depsgraph *graph)
 {
   deg::Depsgraph *deg_graph = reinterpret_cast<deg::Depsgraph *>(graph);
   deg_graph->ctime = BKE_scene_frame_get(deg_graph->scene);
-  /* Update time on primary timesource. */
   /* Update time in scene. */
   if (deg_graph->scene_cow) {
     BKE_scene_frame_set(deg_graph->scene_cow, deg_graph->ctime);
@@ -67,7 +66,6 @@ void DEG_evaluate_on_framechange(Main *bmain, Depsgraph *graph, float ctime)
 {
   deg::Depsgraph *deg_graph = reinterpret_cast<deg::Depsgraph *>(graph);
   deg_graph->ctime = ctime;
-  /* Update time on primary timesource. */
   deg_graph->need_update_time = true;
   deg::deg_graph_flush_updates(bmain, deg_graph);
   /* Update time in scene. */



More information about the Bf-blender-cvs mailing list