summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorLeyla Farazha <leyla@lindenlab.com>2010-02-09 15:56:42 -0800
committerLeyla Farazha <leyla@lindenlab.com>2010-02-09 15:56:42 -0800
commit22193b15b82d1a6f0ce8846d122bf3ddcefbf13e (patch)
treec6c2b595b3e6c518bcf5450e56fb470fa5c07dba /indra/llrender
parentf040942f190cfdf10ee577a9b4f6a5c83e752e00 (diff)
parent465a3356a2f32362837d5231a21b9151f45f890b (diff)
Merge
Diffstat (limited to 'indra/llrender')
-rw-r--r--indra/llrender/llfontfreetype.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/llrender/llfontfreetype.cpp b/indra/llrender/llfontfreetype.cpp
index 59e7d890f4..22fad792da 100644
--- a/indra/llrender/llfontfreetype.cpp
+++ b/indra/llrender/llfontfreetype.cpp
@@ -504,8 +504,13 @@ void LLFontFreetype::resetBitmapCache()
mCharGlyphInfoMap.clear();
mFontBitmapCachep->reset();
- // Add the empty glyph
- addGlyphFromFont(this, 0, 0);
+ // Adding default glyph is skipped for fallback fonts here as well as in loadFace().
+ // This if was added as fix for EXT-4971.
+ if(!mIsFallback)
+ {
+ // Add the empty glyph
+ addGlyphFromFont(this, 0, 0);
+ }
}
void LLFontFreetype::destroyGL()