From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34601) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjQ6J-0006lm-R3 for qemu-devel@nongnu.org; Fri, 14 Dec 2012 02:54:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TjQ6F-0005oP-QG for qemu-devel@nongnu.org; Fri, 14 Dec 2012 02:54:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjQ6F-0005o4-JD for qemu-devel@nongnu.org; Fri, 14 Dec 2012 02:54:27 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBE7sQXh020790 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 14 Dec 2012 02:54:27 -0500 From: Gerd Hoffmann Date: Fri, 14 Dec 2012 08:54:21 +0100 Message-Id: <1355471665-23903-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1355471665-23903-1-git-send-email-kraxel@redhat.com> References: <1355471665-23903-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/5] pixman: fix version check for PIXMAN_TYPE_BGRA List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- qemu-pixman.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-pixman.c b/qemu-pixman.c index e46e180..79e175b 100644 --- a/qemu-pixman.c +++ b/qemu-pixman.c @@ -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 } -- 1.7.1