diff options
author | Dave Parks <davep@lindenlab.com> | 2011-11-10 14:48:48 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-11-10 14:48:48 -0600 |
commit | 76bd8cee1120ac531d56b9897b135e9c1af1bb16 (patch) | |
tree | 11878ae7f4cf36d38bcaa119478e5aadeaffdd66 /indra/newview/llviewerobject.cpp | |
parent | c8f558f6775d62f03d6caab19668df80e95e8a8b (diff) |
SH-2644 Fix debug display that shows selection triangle count and streaming cost
Diffstat (limited to 'indra/newview/llviewerobject.cpp')
-rwxr-xr-x | indra/newview/llviewerobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llviewerobject.cpp b/indra/newview/llviewerobject.cpp index d81e67bfe2..b8772971aa 100755 --- a/indra/newview/llviewerobject.cpp +++ b/indra/newview/llviewerobject.cpp @@ -3219,12 +3219,12 @@ F32 LLViewerObject::getLinksetPhysicsCost() return mLinksetPhysicsCost; } -F32 LLViewerObject::getStreamingCost(S32* bytes, S32* visible_bytes) +F32 LLViewerObject::getStreamingCost(S32* bytes, S32* visible_bytes, F32* unscaled_value) const { return 0.f; } -U32 LLViewerObject::getTriangleCount() +U32 LLViewerObject::getTriangleCount(S32* vcount) const { return 0; } |