[Bf-blender-cvs] [211c4fd2e9a] master: Depsgraph: Make comment about evaluation more obvious

Sergey Sharybin noreply at git.blender.org
Fri May 3 15:53:00 CEST 2019


Commit: 211c4fd2e9af3414117d96f01e507db8225a5531
Author: Sergey Sharybin
Date:   Fri May 3 09:49:15 2019 +0200
Branches: master
https://developer.blender.org/rB211c4fd2e9af3414117d96f01e507db8225a5531

Depsgraph: Make comment about evaluation more obvious

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

M	source/blender/blenkernel/BKE_material.h
M	source/blender/blenkernel/BKE_movieclip.h
M	source/blender/blenkernel/BKE_scene.h
M	source/blender/blenkernel/BKE_sound.h
M	source/blender/blenkernel/intern/scene.c

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

diff --git a/source/blender/blenkernel/BKE_material.h b/source/blender/blenkernel/BKE_material.h
index 37c502b3b0c..9d8b9218a79 100644
--- a/source/blender/blenkernel/BKE_material.h
+++ b/source/blender/blenkernel/BKE_material.h
@@ -113,7 +113,7 @@ void free_matcopybuf(void);
 void copy_matcopybuf(struct Main *bmain, struct Material *ma);
 void paste_matcopybuf(struct Main *bmain, struct Material *ma);
 
-/* Evaluation. */
+/* Dependency graph evaluation. */
 
 struct Depsgraph;
 
diff --git a/source/blender/blenkernel/BKE_movieclip.h b/source/blender/blenkernel/BKE_movieclip.h
index 43ee284a201..9425f396bc5 100644
--- a/source/blender/blenkernel/BKE_movieclip.h
+++ b/source/blender/blenkernel/BKE_movieclip.h
@@ -116,7 +116,8 @@ bool BKE_movieclip_put_frame_if_possible(struct MovieClip *clip,
                                          struct MovieClipUser *user,
                                          struct ImBuf *ibuf);
 
-/* Evaluation. */
+/* Dependency graph evaluation. */
+
 void BKE_movieclip_eval_update(struct Depsgraph *depsgraph, struct MovieClip *clip);
 void BKE_movieclip_eval_selection_update(struct Depsgraph *depsgraph, struct MovieClip *clip);
 
diff --git a/source/blender/blenkernel/BKE_scene.h b/source/blender/blenkernel/BKE_scene.h
index 7aecfdb1a4d..3b5db883cf3 100644
--- a/source/blender/blenkernel/BKE_scene.h
+++ b/source/blender/blenkernel/BKE_scene.h
@@ -240,7 +240,7 @@ void BKE_scene_cursor_quat_to_rot(struct View3DCursor *cursor,
                                   const float quat[4],
                                   bool use_compat);
 
-/* Evaluation. */
+/* Dependency graph evaluation. */
 
 /* Evaluate parts of sequences which needs to be done as a part of a dependency graph evaluation.
  * This does NOT include actual rendering of the strips, but rather makes them up-to-date for
diff --git a/source/blender/blenkernel/BKE_sound.h b/source/blender/blenkernel/BKE_sound.h
index 0c1ab2cc4c3..9eebc6ab6be 100644
--- a/source/blender/blenkernel/BKE_sound.h
+++ b/source/blender/blenkernel/BKE_sound.h
@@ -164,7 +164,7 @@ typedef void (*SoundJackSyncCallback)(struct Main *bmain, int mode, float time);
 void BKE_sound_jack_sync_callback_set(SoundJackSyncCallback callback);
 void BKE_sound_jack_scene_update(struct Scene *scene, int mode, float time);
 
-/* Evaluation. */
+/* Dependency graph evaluation. */
 
 struct Depsgraph;
 
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index 733e76fef2d..1e43aee64eb 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -2393,7 +2393,7 @@ void BKE_scene_cursor_quat_to_rot(View3DCursor *cursor, const float quat[4], boo
 
 /** \} */
 
-/* Evaluation. */
+/* Dependency graph evaluation. */
 
 void BKE_scene_eval_sequencer_sequences(Depsgraph *depsgraph, Scene *scene)
 {



More information about the Bf-blender-cvs mailing list