libobs/graphics: Always load gif frame if needed
Under certain circumstances it's necessary to seek, but if the frame isn't loaded for the position that's being seeked to, it won't update the texture. This just ensures the texture will update when seeking.master
parent
fe62658c69
commit
0c5fd7a0fb
|
@ -318,9 +318,10 @@ void gs_image_file_update_texture(gs_image_file_t *image)
|
||||||
if (!image->is_animated_gif || !image->loaded)
|
if (!image->is_animated_gif || !image->loaded)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (image->animation_frame_cache[image->cur_frame]) {
|
if (!image->animation_frame_cache[image->cur_frame])
|
||||||
gs_texture_set_image(image->texture,
|
decode_new_frame(image, image->cur_frame);
|
||||||
image->animation_frame_cache[image->cur_frame],
|
|
||||||
image->gif.width * 4, false);
|
gs_texture_set_image(image->texture,
|
||||||
}
|
image->animation_frame_cache[image->cur_frame],
|
||||||
|
image->gif.width * 4, false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue