]> Git Repo - qemu.git/commitdiff
pixman: fix version check for PIXMAN_TYPE_BGRA
authorGerd Hoffmann <[email protected]>
Fri, 14 Dec 2012 07:54:21 +0000 (08:54 +0100)
committerBlue Swirl <[email protected]>
Fri, 14 Dec 2012 20:55:37 +0000 (20:55 +0000)
Signed-off-by: Gerd Hoffmann <[email protected]>
Signed-off-by: Blue Swirl <[email protected]>
qemu-pixman.c

index e46e1804f69150d5a5d678454c91b8f7a785f46f..79e175b8d0d2bceb168ca13fbe91f6edd43922ce 100644 (file)
@@ -21,7 +21,7 @@ int qemu_pixman_get_type(int rshift, int gshift, int bshift)
         if (rshift == 0) {
             type = PIXMAN_TYPE_ABGR;
         } else {
-#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0, 21, 8)
+#if PIXMAN_VERSION >= PIXMAN_VERSION_ENCODE(0, 16, 0)
             type = PIXMAN_TYPE_BGRA;
 #endif
         }
This page took 0.025953 seconds and 4 git commands to generate.