Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/sequencer.c
| Show First 20 Lines • Show All 2,781 Lines • ▼ Show 20 Lines | if (seq->flag & SEQ_MAKE_FLOAT) { | ||||
| } | } | ||||
| } | } | ||||
| if (mul != 1.0f) { | if (mul != 1.0f) { | ||||
| multibuf(ibuf, mul); | multibuf(ibuf, mul); | ||||
| } | } | ||||
| if (ibuf->x != context->rectx || ibuf->y != context->recty) { | if (ibuf->x != context->rectx || ibuf->y != context->recty) { | ||||
| if (scene->display.render_aa > SCE_DISPLAY_AA_FXAA) { | if (context->for_render) { | ||||
| IMB_scaleImBuf(ibuf, (short)context->rectx, (short)context->recty); | IMB_scaleImBuf(ibuf, (short)context->rectx, (short)context->recty); | ||||
| } | } | ||||
| else { | else { | ||||
| IMB_scalefastImBuf(ibuf, (short)context->rectx, (short)context->recty); | IMB_scalefastImBuf(ibuf, (short)context->rectx, (short)context->recty); | ||||
| } | } | ||||
| } | } | ||||
| if (seq->modifiers.first) { | if (seq->modifiers.first) { | ||||
| ▲ Show 20 Lines • Show All 3,223 Lines • Show Last 20 Lines | |||||