Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/sequencer.c
| Show First 20 Lines • Show All 3,006 Lines • ▼ Show 20 Lines | static ImBuf *seq_render_image_strip(const SeqRenderData *context, | ||||
| float UNUSED(nr), | float UNUSED(nr), | ||||
| float cfra) | float cfra) | ||||
| { | { | ||||
| ImBuf *ibuf = NULL; | ImBuf *ibuf = NULL; | ||||
| char name[FILE_MAX]; | char name[FILE_MAX]; | ||||
| bool is_multiview = (seq->flag & SEQ_USE_VIEWS) != 0 && | bool is_multiview = (seq->flag & SEQ_USE_VIEWS) != 0 && | ||||
| (context->scene->r.scemode & R_MULTIVIEW) != 0; | (context->scene->r.scemode & R_MULTIVIEW) != 0; | ||||
| StripElem *s_elem = BKE_sequencer_give_stripelem(seq, cfra); | StripElem *s_elem = BKE_sequencer_give_stripelem(seq, cfra); | ||||
| int flag; | eImBufFlags flag; | ||||
| if (s_elem) { | if (s_elem) { | ||||
| BLI_join_dirfile(name, sizeof(name), seq->strip->dir, s_elem->name); | BLI_join_dirfile(name, sizeof(name), seq->strip->dir, s_elem->name); | ||||
| BLI_path_abs(name, BKE_main_blendfile_path_from_global()); | BLI_path_abs(name, BKE_main_blendfile_path_from_global()); | ||||
| } | } | ||||
| flag = IB_rect | IB_metadata; | flag = IB_rect | IB_metadata; | ||||
| if (seq->alpha_mode == SEQ_ALPHA_PREMUL) { | if (seq->alpha_mode == SEQ_ALPHA_PREMUL) { | ||||
| ▲ Show 20 Lines • Show All 2,904 Lines • Show Last 20 Lines | |||||