aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llrender/llfontgl.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llrender/llfontgl.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/llrender/llfontgl.cpp b/linden/indra/llrender/llfontgl.cpp
index 9298e8c..53e8c2b 100644
--- a/linden/indra/llrender/llfontgl.cpp
+++ b/linden/indra/llrender/llfontgl.cpp
@@ -47,6 +47,7 @@ F32 LLFontGL::sVertDPI = 96.f;
47F32 LLFontGL::sHorizDPI = 96.f; 47F32 LLFontGL::sHorizDPI = 96.f;
48F32 LLFontGL::sScaleX = 1.f; 48F32 LLFontGL::sScaleX = 1.f;
49F32 LLFontGL::sScaleY = 1.f; 49F32 LLFontGL::sScaleY = 1.f;
50BOOL LLFontGL::sDisplayFont = TRUE ;
50LLString LLFontGL::sAppDir; 51LLString LLFontGL::sAppDir;
51 52
52LLFontGL* LLFontGL::sMonospace = NULL; 53LLFontGL* LLFontGL::sMonospace = NULL;
@@ -559,6 +560,11 @@ S32 LLFontGL::render(const LLWString &wstr,
559 BOOL use_embedded, 560 BOOL use_embedded,
560 BOOL use_ellipses) const 561 BOOL use_ellipses) const
561{ 562{
563 if(!sDisplayFont) //do not display texts
564 {
565 return wstr.length() ;
566 }
567
562 LLGLEnable tex(GL_TEXTURE_2D); 568 LLGLEnable tex(GL_TEXTURE_2D);
563 569
564 if (wstr.empty()) 570 if (wstr.empty())