diff options
| author | Rye Mutt <rye@alchemyviewer.org> | 2022-10-29 23:18:03 -0400 | 
|---|---|---|
| committer | Rye Mutt <rye@alchemyviewer.org> | 2022-10-29 23:18:03 -0400 | 
| commit | d89033420ef05b9b0a5751c3f254ce802e90df0b (patch) | |
| tree | 90e7de1c0fee271aad3822819a7281abd92279fe /indra/newview | |
| parent | 83466b301a34183a0d146d13bdc7973e02172588 (diff) | |
Fix RenderAppleUseMultGL debug setting for enabling threaded GL engine
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llappviewer.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 4f3e0b08e4..5d509fa4ff 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -135,6 +135,10 @@  #include "vlc/libvlc_version.h"  #endif // LL_LINUX +#if LL_DARWIN +#include "llwindowmacosx.h" +#endif +  // Third party library includes  #include <boost/bind.hpp>  #include <boost/foreach.hpp> @@ -560,6 +564,7 @@ static void settings_to_globals()      LLWorldMapView::setScaleSetting(gSavedSettings.getF32("MapScale"));  #if LL_DARWIN +    LLWindowMacOSX::sUseMultGL = gSavedSettings.getBOOL("RenderAppleUseMultGL");  	gHiDPISupport = gSavedSettings.getBOOL("RenderHiDPI");  #endif  } | 
