From 3045f93f62c968c36500a9661f4423966bbd21c7 Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Tue, 10 Sep 2013 19:19:05 +0200 Subject: [PATCH] Increased octree limit to 32k. Addresses "4096 bug" in Opensim Thanks to NickyD for tracking down the cause. Refereces: https://jira.secondlife.com/browse/SVC-2941 http://redmine.kokuaviewer.org/issues/465 http://jira.phoenixviewer.com/browse/FIRE-11593 --- indra/llmath/lloctree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llmath/lloctree.h b/indra/llmath/lloctree.h index b5252d055..f0b1a07cd 100644 --- a/indra/llmath/lloctree.h +++ b/indra/llmath/lloctree.h @@ -1010,7 +1010,7 @@ public: } LLVector4a MAX_MAG; - MAX_MAG.splat(1024.f*1024.f); + MAX_MAG.splat(32767.f * 256.f); // Singu note: SVC-2941 FIRE-11593 maximum increased to 32768 sims across from 4096 const LLVector4a& v = data->getPositionGroup();