Send sequencer render context as const pointer rather than as value

No functional changes just creepy to send rather huge structure by value.
This commit is contained in:
2014-01-19 00:16:19 +06:00
parent 7142b97085
commit f6624b84cf
8 changed files with 203 additions and 200 deletions

View File

@@ -2214,7 +2214,7 @@ static void do_render_seq(Render *re)
re->result->rectx, re->result->recty, 100);
}
out = BKE_sequencer_give_ibuf(context, cfra, 0);
out = BKE_sequencer_give_ibuf(&context, cfra, 0);
if (out) {
ibuf = IMB_dupImBuf(out);