Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/seqeffects.c
| Show First 20 Lines • Show All 2,804 Lines • ▼ Show 20 Lines | static ImBuf *do_glow_effect(const SeqRenderData *context, | ||||
| if (out->rect_float) { | if (out->rect_float) { | ||||
| do_glow_effect_float(seq, | do_glow_effect_float(seq, | ||||
| render_size, | render_size, | ||||
| facf0, | facf0, | ||||
| facf1, | facf1, | ||||
| context->rectx, | context->rectx, | ||||
| context->recty, | context->recty, | ||||
| ibuf1->rect_float, | ibuf1->rect_float, | ||||
| ibuf2->rect_float, | NULL, | ||||
| out->rect_float); | out->rect_float); | ||||
| } | } | ||||
| else { | else { | ||||
| do_glow_effect_byte(seq, | do_glow_effect_byte(seq, | ||||
| render_size, | render_size, | ||||
| facf0, | facf0, | ||||
| facf1, | facf1, | ||||
| context->rectx, | context->rectx, | ||||
| context->recty, | context->recty, | ||||
| (unsigned char *)ibuf1->rect, | (unsigned char *)ibuf1->rect, | ||||
| (unsigned char *)ibuf2->rect, | NULL, | ||||
| (unsigned char *)out->rect); | (unsigned char *)out->rect); | ||||
| } | } | ||||
| return out; | return out; | ||||
| } | } | ||||
| /*********************** Solid color *************************/ | /*********************** Solid color *************************/ | ||||
| ▲ Show 20 Lines • Show All 1,465 Lines • Show Last 20 Lines | |||||