aboutsummaryrefslogtreecommitdiffstats
path: root/readers.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2019-02-01 23:01:03 +0100
committerGerd Hoffmann <kraxel@redhat.com>2019-02-01 23:01:03 +0100
commitb8e5897b4edb640012f43dc87b7c84194163a153 (patch)
tree0ad9b3858b615ed53f9598481249e5c28e07d189 /readers.c
parent83a73a82f5c91c0ab223649a0e9af5430cfa3b9a (diff)
downloadfbida-b8e5897b4edb640012f43dc87b7c84194163a153.tar.gz
use pixman for image blit+blend
Diffstat (limited to 'readers.c')
-rw-r--r--readers.c2
1 files changed, 1 insertions, 1 deletions
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);
}