wok view cairo/stuff/cairo-respect-fontconfig.patch @ rev 16284

ARM: make nfs-utils cross compile
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 20:48:48 2014 +0200 (2014-04-06)
parents
children
line source
1 diff -Nur cairo-1.8.6.orig/src/cairo-ft-font.c cairo-1.8.6/src/cairo-ft-font.c
2 --- cairo-1.8.6.orig/src/cairo-ft-font.c 2008-12-12 20:48:04.000000000 +0800
3 +++ cairo-1.8.6/src/cairo-ft-font.c 2009-02-20 14:56:57.000000000 +0800
4 @@ -1448,8 +1448,15 @@
5 if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT)
6 options->base.hint_style = other->base.hint_style;
8 - if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
9 - options->base.hint_style = CAIRO_HINT_STYLE_NONE;
10 + //if (other->base.hint_style == CAIRO_HINT_STYLE_NONE)
11 + //options->base.hint_style = CAIRO_HINT_STYLE_NONE;
12 +
13 + if (other->base.hint_style == CAIRO_HINT_STYLE_NONE ||
14 + other->base.hint_style == CAIRO_HINT_STYLE_SLIGHT ||
15 + other->base.hint_style == CAIRO_HINT_STYLE_MEDIUM ||
16 + other->base.hint_style == CAIRO_HINT_STYLE_FULL) {
17 + options->base.hint_style = other->base.hint_style;
18 + }
20 if (options->base.antialias == CAIRO_ANTIALIAS_NONE) {
21 if (options->base.hint_style == CAIRO_HINT_STYLE_NONE)