diff options
author | Dave Parks <davep@lindenlab.com> | 2010-09-30 01:28:11 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-09-30 01:28:11 -0500 |
commit | f6b1dddcec1bb237a90a2e857306510b5239b52c (patch) | |
tree | 67daadd998cc2116d35518c023c331f56783d240 /indra/newview | |
parent | 3ee62f7d73d6f39c2c63b0b5db998663d5d03604 (diff) |
Remove unused variable.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llvovolume.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 8eabe8ed90..8e8ece829b 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3209,15 +3209,6 @@ U32 LLVOVolume::getRenderCost(texture_cost_t &textures) const F32 LLVOVolume::getStreamingCost() { - std::string header_lod[] = - { - "lowest_lod", - "low_lod", - "medium_lod", - "high_lod" - }; - - if (isMesh()) { const LLSD& header = gMeshRepo.getMeshHeader(getVolume()->getParams().getSculptID()); @@ -3227,7 +3218,6 @@ F32 LLVOVolume::getStreamingCost() return LLMeshRepository::getStreamingCost(header, radius); } - return 0.f; } |