Depsgraph: Make comment about evaluation more obvious

This commit is contained in:
2019-05-03 09:49:15 +02:00
parent c5fe16e121
commit 211c4fd2e9
5 changed files with 6 additions and 5 deletions

View File

@@ -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;

View File

@@ -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);

View File

@@ -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

View File

@@ -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;

View File

@@ -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)
{