summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-29 20:16:44 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-09-29 20:16:44 +0000
commite69485680c27c4d2d1789a19b2fdadaf5d4cdf82 (patch)
treed80b8f9d602f48549871d5a024d302111e0ee522
parent4a25f33558372e4af9c00dbc062e668a53750151 (diff)
downloadxine-lib-e69485680c27c4d2d1789a19b2fdadaf5d4cdf82.tar.gz
xine-lib-e69485680c27c4d2d1789a19b2fdadaf5d4cdf82.tar.bz2
Improve FreeType2 rendering: do not disable hinting.
CVS patchset: 8323 CVS date: 2006/09/29 20:16:44
-rw-r--r--src/xine-engine/osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xine-engine/osd.c b/src/xine-engine/osd.c
index e6338779b..b5f45d0af 100644
--- a/src/xine-engine/osd.c
+++ b/src/xine-engine/osd.c
@@ -1171,7 +1171,7 @@ static int osd_render_text (osd_object_t *osd, int x1, int y1,
}
previous = i;
- if (FT_Load_Glyph(osd->ft2->face, i, FT_LOAD_DEFAULT | FT_LOAD_NO_HINTING)) {
+ if (FT_Load_Glyph(osd->ft2->face, i, FT_LOAD_DEFAULT)) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG, _("osd: error loading glyph\n"));
continue;
}