1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

Add a patch from Ubuntu to fix gradient rendering problems resulting in

ugly displays, bad performance, etc.

Reported by:	many
Obtained from:	http://repos.archlinux.org/wsvn/packages/cairo/trunk/cairo-1.10.0-buggy_gradients.patch
This commit is contained in:
Joe Marcus Clarke 2010-11-21 19:43:40 +00:00
parent 6bcf29f8d4
commit a27131c782
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=264880
2 changed files with 15 additions and 1 deletions

View File

@ -8,7 +8,7 @@
PORTNAME= cairo
PORTVERSION= 1.10.0
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH?= 1
CATEGORIES= graphics
MASTER_SITES= http://cairographics.org/releases/

View File

@ -0,0 +1,14 @@
--- src/cairo-xlib-display.c.orig 2010-11-21 14:41:31.000000000 -0500
+++ src/cairo-xlib-display.c 2010-11-21 14:42:12.000000000 -0500
@@ -353,11 +353,7 @@ _cairo_xlib_device_create (Display *dpy)
/* Prior to Render 0.10, there is no protocol support for gradients and
* we call function stubs instead, which would silently consume the drawing.
*/
-#if RENDER_MAJOR == 0 && RENDER_MINOR < 10
display->buggy_gradients = TRUE;
-#else
- display->buggy_gradients = FALSE;
-#endif
display->buggy_pad_reflect = FALSE;
display->buggy_repeat = FALSE;