GIF: Update to new libnsgif API.

Set required colour component order.
This commit is contained in:
Michael Drake 2022-03-23 17:52:20 +00:00
parent ae9047b1ed
commit 7c3382834e

View File

@ -103,7 +103,8 @@ static nserror gif_create_gif_data(gif_content *c)
.modified = guit->bitmap->modified .modified = guit->bitmap->modified
}; };
gif_res = nsgif_create(&gif_bitmap_callbacks, &c->gif); gif_res = nsgif_create(&gif_bitmap_callbacks,
NSGIF_BITMAP_FMT_R8G8B8A8, &c->gif);
if (gif_res != NSGIF_OK) { if (gif_res != NSGIF_OK) {
nserror err = gif__nsgif_error_to_ns(gif_res); nserror err = gif__nsgif_error_to_ns(gif_res);
content_broadcast_error(&c->base, err, NULL); content_broadcast_error(&c->base, err, NULL);