diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-17 19:34:03 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-17 19:59:48 +0300 |
commit | 177ad21ade8fbbb05ac5c373b8b43176e70e64a7 (patch) | |
tree | d8350ba9674a75c9181be525e7f58f09554dc945 /indra/llui/llui.cpp | |
parent | b193defea81f279f366035d628941e4f463b25fe (diff) |
SL-13729 Performance of LLUI and LLRender2D
Diffstat (limited to 'indra/llui/llui.cpp')
-rw-r--r-- | indra/llui/llui.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp index 656b69d3ed..77b59e5bc5 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -510,6 +510,18 @@ const LLView* LLUI::resolvePath(const LLView* context, const std::string& path) return context; } +//static +LLVector2& LLUI::getScaleFactor() +{ + return LLRender::sUIGLScaleFactor; +} + +//static +void LLUI::setScaleFactor(const LLVector2& scale_factor) +{ + LLRender::sUIGLScaleFactor = scale_factor; +} + // LLLocalClipRect and LLScreenClipRect moved to lllocalcliprect.h/cpp |