diff options
author | andreykproductengine <akleshchev@productengine.com> | 2015-09-22 17:21:06 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2015-09-22 17:21:06 +0300 |
commit | cfcc31c459b995caba88b99c48646e29f796a108 (patch) | |
tree | 451ce9a54fb0f2333070510c3aca2c5b97449ec6 /indra/newview/llavatarrendernotifier.h | |
parent | 47dfdff3c0d684e78bd72d671a0d840798076a87 (diff) |
MAINT-5570 additional comments, extended functionality of some variables
Diffstat (limited to 'indra/newview/llavatarrendernotifier.h')
-rw-r--r-- | indra/newview/llavatarrendernotifier.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llavatarrendernotifier.h b/indra/newview/llavatarrendernotifier.h index 3df8d38210..2a2704de28 100644 --- a/indra/newview/llavatarrendernotifier.h +++ b/indra/newview/llavatarrendernotifier.h @@ -72,9 +72,13 @@ private: // initial outfit related variables (state control) bool mNotifyOutfitLoading; - S32 mInitialCofVersion; - S32 mInitialOtfitRezStatus; + + // COF (inventory folder) and Skeleton (voavatar) are used to spot changes in outfit. + S32 mLastCofVersion; S32 mLastSkeletonSerialNum; + // Used to detect changes in voavatar's rezzed status. + // If value decreases - there were changes in outfit. + S32 mLastOutfitRezStatus; }; #endif /* ! defined(LL_llavatarrendernotifier_H) */ |