From b8e5897b4edb640012f43dc87b7c84194163a153 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Fri, 1 Feb 2019 23:01:03 +0100 Subject: use pixman for image blit+blend --- readers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'readers.c') diff --git a/readers.c b/readers.c index 4fd09fc..24cb818 100644 --- a/readers.c +++ b/readers.c @@ -130,7 +130,7 @@ int load_free_extras(struct ida_image_info *info) void ida_image_alloc(struct ida_image *img) { assert(img->p == NULL); - img->p = pixman_image_create_bits(PIXMAN_r8g8b8, + img->p = pixman_image_create_bits(/* PIXMAN_r8g8b8 */ PIXMAN_b8g8r8, img->i.width, img->i.height, NULL, 0); } -- cgit