diff options
author | Oz Linden <oz@lindenlab.com> | 2011-03-31 15:50:34 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-03-31 15:50:34 -0400 |
commit | 635a4524fafe754f38432fce2206f8c730df5234 (patch) | |
tree | 9f35128e70179a25cf086b994d2b4395ff5a2122 /indra/llrender | |
parent | 5c3ae68299f79f3a705fa4b3e9cd262b56695318 (diff) | |
parent | 4aad5ee313f580e08f9689b7ff4c4c088c20f831 (diff) |
pull tags from viewer-development
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llfontfreetype.cpp | 2 |
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); |