diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewerregion.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/linden/indra/newview/llviewerregion.h b/linden/indra/newview/llviewerregion.h index 6407f0c..d759361 100644 --- a/linden/indra/newview/llviewerregion.h +++ b/linden/indra/newview/llviewerregion.h | |||
@@ -2,6 +2,8 @@ | |||
2 | * @file llviewerregion.h | 2 | * @file llviewerregion.h |
3 | * @brief Description of the LLViewerRegion class. | 3 | * @brief Description of the LLViewerRegion class. |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2001&license=viewergpl$ | ||
6 | * | ||
5 | * Copyright (c) 2001-2007, Linden Research, Inc. | 7 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 8 | * |
7 | * Second Life Viewer Source Code | 9 | * Second Life Viewer Source Code |
@@ -24,6 +26,7 @@ | |||
24 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 26 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO |
25 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 27 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, |
26 | * COMPLETENESS OR PERFORMANCE. | 28 | * COMPLETENESS OR PERFORMANCE. |
29 | * $/LicenseInfo$ | ||
27 | */ | 30 | */ |
28 | 31 | ||
29 | #ifndef LL_LLVIEWERREGION_H | 32 | #ifndef LL_LLVIEWERREGION_H |
@@ -262,7 +265,13 @@ public: | |||
262 | LLStat mPacketsStat; | 265 | LLStat mPacketsStat; |
263 | LLStat mPacketsLostStat; | 266 | LLStat mPacketsLostStat; |
264 | 267 | ||
268 | // These arrays are maintained in parallel. Ideally they'd be combined into a | ||
269 | // single array of an aggrigate data type but for compatibility with the old | ||
270 | // messaging system in which the previous message only sends and parses the | ||
271 | // positions stored in the first array so they're maintained separately until | ||
272 | // we stop supporting the old CoarseLocationUpdate message. | ||
265 | LLDynamicArray<U32> mMapAvatars; | 273 | LLDynamicArray<U32> mMapAvatars; |
274 | LLDynamicArray<LLUUID> mMapAvatarIDs; | ||
266 | 275 | ||
267 | protected: | 276 | protected: |
268 | // The surfaces and other layers | 277 | // The surfaces and other layers |
@@ -388,3 +397,4 @@ inline BOOL LLViewerRegion::getRestrictPushObject() const | |||
388 | 397 | ||
389 | #endif | 398 | #endif |
390 | 399 | ||
400 | |||