Changeset View
Changeset View
Standalone View
Standalone View
source/blender/sequencer/intern/image_cache.h
| Show All 34 Lines | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||
| struct ImBuf *seq_cache_get(const struct SeqRenderData *context, | struct ImBuf *seq_cache_get(const struct SeqRenderData *context, | ||||
| struct Sequence *seq, | struct Sequence *seq, | ||||
| float timeline_frame, | float timeline_frame, | ||||
| int type, | int type); | ||||
| bool skip_disk_cache); | |||||
| void seq_cache_put(const struct SeqRenderData *context, | void seq_cache_put(const struct SeqRenderData *context, | ||||
| struct Sequence *seq, | struct Sequence *seq, | ||||
| float timeline_frame, | float timeline_frame, | ||||
| int type, | int type, | ||||
| struct ImBuf *i, | struct ImBuf *i); | ||||
| bool skip_disk_cache); | |||||
| bool seq_cache_put_if_possible(const struct SeqRenderData *context, | bool seq_cache_put_if_possible(const struct SeqRenderData *context, | ||||
| struct Sequence *seq, | struct Sequence *seq, | ||||
| float timeline_frame, | float timeline_frame, | ||||
| int type, | int type, | ||||
| struct ImBuf *nval, | struct ImBuf *nval); | ||||
| bool skip_disk_cache); | |||||
| bool seq_cache_recycle_item(struct Scene *scene); | bool seq_cache_recycle_item(struct Scene *scene); | ||||
| void seq_cache_free_temp_cache(struct Scene *scene, short id, int timeline_frame); | void seq_cache_free_temp_cache(struct Scene *scene, short id, int timeline_frame); | ||||
| void seq_cache_destruct(struct Scene *scene); | void seq_cache_destruct(struct Scene *scene); | ||||
| void seq_cache_cleanup_all(struct Main *bmain); | void seq_cache_cleanup_all(struct Main *bmain); | ||||
| void seq_cache_cleanup_sequence(struct Scene *scene, | void seq_cache_cleanup_sequence(struct Scene *scene, | ||||
| struct Sequence *seq, | struct Sequence *seq, | ||||
| struct Sequence *seq_changed, | struct Sequence *seq_changed, | ||||
| int invalidate_types, | int invalidate_types, | ||||
| bool force_seq_changed_range); | bool force_seq_changed_range); | ||||
| bool seq_cache_is_full(void); | bool seq_cache_is_full(void); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||