[cairo-bugs] [Bug 11838] hintstyle specified in fontconfig is ignored while rgba is respected
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Fri Jul 18 05:45:33 PDT 2008
http://bugs.freedesktop.org/show_bug.cgi?id=11838
W. Lin <bellylin at yahoo.com.tw> changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|1.4.10 |1.6.4
--- Comment #1 from W. Lin <bellylin at yahoo.com.tw> 2008-07-18 05:45:31 PST ---
Recently I've found a better fix. Set default hintstyle to
"CAIRO_HINT_STYLE_DEFAULT"(which is new), and in the function
_cairo_ft_options_merge, change
if (options->base.hint_style == CAIRO_HINT_STYLE_DEFAULT)
options->base.hint_style = other->base.hint_style;
to
if (other->base.hint_style != CAIRO_HINT_STYLE_DEFAULT)
options->base.hint_style = other->base.hint_style;
This should give fair result, i.e., only if hintstyle is specified with
fontconfig would the value configured with gnome-settings-daemon be overriden.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the cairo-bugs
mailing list