From 1c7d8bab608d163d488e31cb09a0c613da33afe6 Mon Sep 17 00:00:00 2001 From: bjs Date: Wed, 15 Oct 2008 00:56:45 +0000 Subject: Update to pixman-0.12.0 from 0.11.10. In addition to many bug fixes, new features [since approximately 0.10.0] include: - New image formats with 10 bits per channel - SSE2 optimizations for many operations - Opacity based optimizations for operators - Altivec optimizations for many operations - A 32 bit region implementation --- x11/pixman/patches/patch-af | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 x11/pixman/patches/patch-af (limited to 'x11/pixman/patches/patch-af') diff --git a/x11/pixman/patches/patch-af b/x11/pixman/patches/patch-af deleted file mode 100644 index 02c84e087fd..00000000000 --- a/x11/pixman/patches/patch-af +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-af,v 1.4 2008/09/16 21:22:34 bjs Exp $ - -git ref:00f3d6ef22b5a062323208fd540a17ca65dca42b (to vers 0.11.10) - -Fix bug in pixman_image_is_opaque(). - ---- pixman/pixman-image.c.orig 2008-06-13 15:51:00.000000000 -0400 -+++ pixman/pixman-image.c -@@ -818,6 +818,10 @@ pixman_image_is_opaque(pixman_image_t *i - - if (image->common.transform) - return FALSE; -+ -+ /* Gradients do not necessarily cover the entire compositing area */ -+ if (image->type == LINEAR || image->type == CONICAL || image->type == RADIAL) -+ return FALSE; - } - - return TRUE; -- cgit v1.2.3