diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-09-10 15:08:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 15:08:03 -0400 |
commit | d5328ef226a470584b086d6bf4d80e8911e1e7df (patch) | |
tree | 38a5adcae8cf7521f287896e96dd2cef01d5b4f8 /indra/newview/llselectmgr.cpp | |
parent | 59676066cd740abb3002225ad67259e3dc09ab45 (diff) | |
parent | 761a4fa4291b4cbef0b2056c6a0b1f449c0cb4bf (diff) |
Merge pull request #2536 from Ansariel/develop-viewermenu-cleanup
Clean up llviewermenu
Diffstat (limited to 'indra/newview/llselectmgr.cpp')
-rw-r--r-- | indra/newview/llselectmgr.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index 342048252f..51da051340 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -103,20 +103,12 @@ LLViewerObject* getSelectedParentObject(LLViewerObject *object) ; // Consts // -const F32 SILHOUETTE_UPDATE_THRESHOLD_SQUARED = 0.02f; -const S32 MAX_SILS_PER_FRAME = 50; -const S32 MAX_OBJECTS_PER_PACKET = 254; +constexpr F32 SILHOUETTE_UPDATE_THRESHOLD_SQUARED = 0.02f; +constexpr S32 MAX_SILS_PER_FRAME = 50; +constexpr S32 MAX_OBJECTS_PER_PACKET = 254; // For linked sets -const S32 MAX_CHILDREN_PER_TASK = 255; +constexpr S32 MAX_CHILDREN_PER_TASK = 255; -// -// Globals -// - -//bool gDebugSelectMgr = false; - -//bool gHideSelectedObjects = false; -//bool gAllowSelectAvatar = false; bool LLSelectMgr::sRectSelectInclusive = true; bool LLSelectMgr::sRenderHiddenSelections = true; |