Changeset View
Changeset View
Standalone View
Standalone View
source/blender/sequencer/intern/render.c
| Show First 20 Lines • Show All 605 Lines • ▼ Show 20 Lines | |||||
| * enabled for them. With proxies `is_proxy_image` will be set correctly to true. | * enabled for them. With proxies `is_proxy_image` will be set correctly to true. | ||||
| */ | */ | ||||
| static bool seq_need_scale_to_render_size(const Sequence *seq, bool is_proxy_image) | static bool seq_need_scale_to_render_size(const Sequence *seq, bool is_proxy_image) | ||||
| { | { | ||||
| if (is_proxy_image) { | if (is_proxy_image) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| if ((seq->type & SEQ_TYPE_EFFECT) != 0 || seq->type == SEQ_TYPE_MASK || | if ((seq->type & SEQ_TYPE_EFFECT) != 0 || seq->type == SEQ_TYPE_MASK || | ||||
| seq->type == SEQ_TYPE_META || | |||||
| (seq->type == SEQ_TYPE_SCENE && ((seq->flag & SEQ_SCENE_STRIPS) != 0))) { | (seq->type == SEQ_TYPE_SCENE && ((seq->flag & SEQ_SCENE_STRIPS) != 0))) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| return false; | return false; | ||||
| } | } | ||||
| static ImBuf *input_preprocess(const SeqRenderData *context, | static ImBuf *input_preprocess(const SeqRenderData *context, | ||||
| Sequence *seq, | Sequence *seq, | ||||
| ▲ Show 20 Lines • Show All 1,450 Lines • Show Last 20 Lines | |||||