diff options
author | Dave Parks <davep@lindenlab.com> | 2012-09-20 10:00:32 -0400 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-09-20 10:00:32 -0400 |
commit | 898e58987eb8df65d3c0889b8d23c4261eec45d0 (patch) | |
tree | ba9aa43e8e6a01848695c2974c418a6b5320f4e9 /indra/newview/llflexibleobject.h | |
parent | 6d5381d012bd9358dfb0a83125d96bb70fa73f43 (diff) |
reapply b0148737d316: MAINT-646 Optimize LLVolumeImplFlexible::doIdleUpdate()
Diffstat (limited to 'indra/newview/llflexibleobject.h')
-rw-r--r-- | indra/newview/llflexibleobject.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llflexibleobject.h b/indra/newview/llflexibleobject.h index 371d6a0773..56d579d86f 100644 --- a/indra/newview/llflexibleobject.h +++ b/indra/newview/llflexibleobject.h @@ -78,7 +78,8 @@ class LLVolumeImplFlexible : public LLVolumeInterface LLVector3 getFramePosition() const; LLQuaternion getFrameRotation() const; LLVolumeInterfaceType getInterfaceType() const { return INTERFACE_FLEXIBLE; } - BOOL doIdleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); + void updateRenderRes(); + void doIdleUpdate(LLAgent &agent, LLWorld &world, const F64 &time); BOOL doUpdateGeometry(LLDrawable *drawable); LLVector3 getPivotPosition() const; void onSetVolume(const LLVolumeParams &volume_params, const S32 detail); @@ -128,7 +129,7 @@ class LLVolumeImplFlexible : public LLVolumeInterface LLVector3 mCollisionSpherePosition; F32 mCollisionSphereRadius; U32 mID; - + //-------------------------------------- // private methods //-------------------------------------- |