summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-04-01 09:24:05 -0400
committerOz Linden <oz@lindenlab.com>2011-04-01 09:24:05 -0400
commit5e617d77f34f17f7a8f3677270f2738f857a60b8 (patch)
tree921afb347a56f21c0ae7d5c34aae73d9ec96b1bb /indra/llrender
parente0ca936fbf7411bcc1cdd935a50c5913db6a1cb9 (diff)
parent8bc829220f8fc99180a1b1917220576a59de7339 (diff)
merge changes for storm-1072
Diffstat (limited to 'indra/llrender')
-rw-r--r--indra/llrender/llfontfreetype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp
index b84e696e2d..91c8a37022 100644
--- a/indra/llrender/llfontfreetype.cpp
+++ b/indra/llrender/llfontfreetype.cpp
@@ -482,7 +482,7 @@ void LLFontFreetype::renderGlyph(U32 glyph_index) const
if (mFTFace == NULL)
return;
- int error = FT_Load_Glyph(mFTFace, glyph_index, FT_LOAD_DEFAULT );
+ int error = FT_Load_Glyph(mFTFace, glyph_index, FT_LOAD_FORCE_AUTOHINT );
llassert(!error);
error = FT_Render_Glyph(mFTFace->glyph, gFontRenderMode);