Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 12:45:31 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 12:45:31 +0300
commit6ec8344243e6935281120a504b5a3355d2b3620a (patch)
tree7f9aa3f71fae0064a757cf2e5021beebbce3ae2e /source/blender/blenkernel/BKE_movieclip.h
parenteb090d06092701683d073fa041e64077b61b810c (diff)
Depsgraph: Add missing movie clip dopesheet invalidation
Diffstat (limited to 'source/blender/blenkernel/BKE_movieclip.h')
-rw-r--r--source/blender/blenkernel/BKE_movieclip.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_movieclip.h b/source/blender/blenkernel/BKE_movieclip.h
index 3ddf75f204e..0bdff3eb795 100644
--- a/source/blender/blenkernel/BKE_movieclip.h
+++ b/source/blender/blenkernel/BKE_movieclip.h
@@ -32,6 +32,7 @@
* \author Sergey Sharybin
*/
+struct EvaluationContext;
struct ImBuf;
struct Main;
struct MovieClip;
@@ -82,6 +83,9 @@ struct ImBuf *BKE_movieclip_anim_ibuf_for_frame(struct MovieClip *clip, struct M
bool BKE_movieclip_has_cached_frame(struct MovieClip *clip, struct MovieClipUser *user);
bool BKE_movieclip_put_frame_if_possible(struct MovieClip *clip, struct MovieClipUser *user, struct ImBuf *ibuf);
+/* Evaluaiton. */
+void BKE_movieclip_eval_update(struct EvaluationContext *eval_ctx, struct MovieClip *clip);
+
/* cacheing flags */
#define MOVIECLIP_CACHE_SKIP (1 << 0)