diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-01 23:01:03 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-01 23:01:03 +0100 |
commit | b8e5897b4edb640012f43dc87b7c84194163a153 (patch) | |
tree | 0ad9b3858b615ed53f9598481249e5c28e07d189 /readers.c | |
parent | 83a73a82f5c91c0ab223649a0e9af5430cfa3b9a (diff) | |
download | fbida-b8e5897b4edb640012f43dc87b7c84194163a153.tar.gz |
use pixman for image blit+blend
Diffstat (limited to 'readers.c')
-rw-r--r-- | readers.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |