diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-08-31 18:19:42 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-08-31 18:19:42 -0400 |
commit | 45639aa0d1889a6cbd9223e987740d25d96ed8fd (patch) | |
tree | 8a8eac3d0ce12868f9f307160e5fa38140e4ef44 /indra/newview | |
parent | db28075a8db2f1eff8f318688e57ae0c76931508 (diff) |
Removed min pixel area for debugging performance.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llbreastmotion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llbreastmotion.cpp b/indra/newview/llbreastmotion.cpp index 57dc169ff3..7c205a8b9f 100644 --- a/indra/newview/llbreastmotion.cpp +++ b/indra/newview/llbreastmotion.cpp @@ -45,7 +45,7 @@ #include "llviewervisualparam.h" #include "llvoavatarself.h" -#define MIN_REQUIRED_PIXEL_AREA_BREAST_MOTION 1000.f; +#define MIN_REQUIRED_PIXEL_AREA_BREAST_MOTION 0.f; #define N_PARAMS 2 @@ -370,7 +370,7 @@ BOOL LLBreastMotion::onUpdate(F32 time, U8* joint_mask) const BOOL is_self = (dynamic_cast<LLVOAvatarSelf *>(this) != NULL); if (!is_self) { - const F32 area_for_max_settings = 200.0; + const F32 area_for_max_settings = 0.0; const F32 area_for_min_settings = 1400.0; const F32 area_for_this_setting = area_for_max_settings + (area_for_min_settings-area_for_max_settings)*(1.0-lod_factor); |