aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/llui.cpp')
-rw-r--r--linden/indra/llui/llui.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/llui/llui.cpp b/linden/indra/llui/llui.cpp
index 5904573..ec8c94e 100644
--- a/linden/indra/llui/llui.cpp
+++ b/linden/indra/llui/llui.cpp
@@ -81,6 +81,7 @@ LLWindow* LLUI::sWindow = NULL;
81LLHtmlHelp* LLUI::sHtmlHelp = NULL; 81LLHtmlHelp* LLUI::sHtmlHelp = NULL;
82BOOL LLUI::sShowXUINames = FALSE; 82BOOL LLUI::sShowXUINames = FALSE;
83std::stack<LLRect> LLScreenClipRect::sClipRectStack; 83std::stack<LLRect> LLScreenClipRect::sClipRectStack;
84BOOL LLUI::sQAMode = FALSE;
84 85
85// 86//
86// Functions 87// Functions
@@ -1759,6 +1760,12 @@ void LLUI::setHtmlHelp(LLHtmlHelp* html_help)
1759 LLUI::sHtmlHelp = html_help; 1760 LLUI::sHtmlHelp = html_help;
1760} 1761}
1761 1762
1763//static
1764void LLUI::setQAMode(BOOL b)
1765{
1766 LLUI::sQAMode = b;
1767}
1768
1762LLScreenClipRect::LLScreenClipRect(const LLRect& rect, BOOL enabled) : mScissorState(GL_SCISSOR_TEST), mEnabled(enabled) 1769LLScreenClipRect::LLScreenClipRect(const LLRect& rect, BOOL enabled) : mScissorState(GL_SCISSOR_TEST), mEnabled(enabled)
1763{ 1770{
1764 if (mEnabled) 1771 if (mEnabled)