Fix #111595: Missing metadata info when blending image

Copy metadata from original image to blended result.

Pull Request: https://projects.blender.org/blender/blender/pulls/111948
This commit is contained in:
Richard Antalik 2023-09-15 16:55:57 +02:00
parent 728d47f3e4
commit f5eff9353c
1 changed files with 1 additions and 0 deletions

View File

@ -1934,6 +1934,7 @@ static ImBuf *seq_render_strip_stack(const SeqRenderData *context,
ImBuf *ibuf2 = seq_render_strip(context, state, seq, timeline_frame);
out = seq_render_strip_stack_apply_effect(context, seq, timeline_frame, ibuf1, ibuf2);
IMB_metadata_copy(out, ibuf2);
seq_cache_put(context, seq_arr[i], timeline_frame, SEQ_CACHE_STORE_COMPOSITE, out);