aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llrender/llfontgl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llrender/llfontgl.cpp')
-rw-r--r--linden/indra/llrender/llfontgl.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/linden/indra/llrender/llfontgl.cpp b/linden/indra/llrender/llfontgl.cpp
index 7baec81..306c6b9 100644
--- a/linden/indra/llrender/llfontgl.cpp
+++ b/linden/indra/llrender/llfontgl.cpp
@@ -242,7 +242,8 @@ BOOL LLFontGL::initDefaultFonts(F32 screen_dpi, F32 x_scale, F32 y_scale,
242 // This is primarily for error detection purposes. 242 // This is primarily for error detection purposes.
243 succ &= (NULL != getFontSansSerifSmall()); 243 succ &= (NULL != getFontSansSerifSmall());
244 succ &= (NULL != getFontSansSerif()); 244 succ &= (NULL != getFontSansSerif());
245 succ &= (NULL != getFontSansSerifBig()); 245 succ &= (NULL != getFontSansSerifBigger());
246 succ &= (NULL != getFontSansSerifLarge());
246 succ &= (NULL != getFontSansSerifHuge()); 247 succ &= (NULL != getFontSansSerifHuge());
247 succ &= (NULL != getFontSansSerifBold()); 248 succ &= (NULL != getFontSansSerifBold());
248 succ &= (NULL != getFontMonospace()); 249 succ &= (NULL != getFontMonospace());
@@ -313,7 +314,13 @@ LLFontGL* LLFontGL::getFontSansSerif()
313} 314}
314 315
315//static 316//static
316LLFontGL* LLFontGL::getFontSansSerifBig() 317LLFontGL* LLFontGL::getFontSansSerifBigger()
318{
319 return getFont(LLFontDescriptor("SansSerif","Bigger",0));
320}
321
322//static
323LLFontGL* LLFontGL::getFontSansSerifLarge()
317{ 324{
318 return getFont(LLFontDescriptor("SansSerif","Large",0)); 325 return getFont(LLFontDescriptor("SansSerif","Large",0));
319} 326}