Skip to content
Snippets Groups Projects
Commit 32e8646e authored by AndreyL ProductEngine's avatar AndreyL ProductEngine
Browse files

MAINT-6559 Fixed a constant in Mesh Streaming calculation

parent 60c0c0e0
No related branches found
No related tags found
No related merge requests found
...@@ -4098,7 +4098,7 @@ F32 LLMeshRepository::getStreamingCost(LLSD& header, F32 radius, S32* bytes, S32 ...@@ -4098,7 +4098,7 @@ F32 LLMeshRepository::getStreamingCost(LLSD& header, F32 radius, S32* bytes, S32
} }
} }
F32 max_area = 102932.f; //area of circle that encompasses region F32 max_area = 102944.f; //area of circle that encompasses region (see MAINT-6559)
F32 min_area = 1.f; F32 min_area = 1.f;
F32 high_area = llmin(F_PI*dmid*dmid, max_area); F32 high_area = llmin(F_PI*dmid*dmid, max_area);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment