aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llvovolume.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2011-07-21 21:00:47 +1000
committerDavid Walter Seikel2011-07-21 21:00:47 +1000
commitf4d07b4a04b432141d8426932f4dd955b9f1a9f1 (patch)
tree1b8e09f6c0ba902fb2212e9c05c4b361fbcb6bbb /linden/indra/newview/llvovolume.h
parentBump version number. (diff)
parentSupport modulo in llcalcparser (diff)
downloadmeta-impy-f4d07b4a04b432141d8426932f4dd955b9f1a9f1.zip
meta-impy-f4d07b4a04b432141d8426932f4dd955b9f1a9f1.tar.gz
meta-impy-f4d07b4a04b432141d8426932f4dd955b9f1a9f1.tar.bz2
meta-impy-f4d07b4a04b432141d8426932f4dd955b9f1a9f1.tar.xz
Merge remote-tracking branch 'imprudence/1.4-beta1.5' into next
Conflicts (merged manually): .gitignore linden/indra/newview/llgesturemgr.cpp linden/indra/newview/viewerinfo.cpp
Diffstat (limited to 'linden/indra/newview/llvovolume.h')
-rw-r--r--linden/indra/newview/llvovolume.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/linden/indra/newview/llvovolume.h b/linden/indra/newview/llvovolume.h
index 2da1d7a..2f53bea 100644
--- a/linden/indra/newview/llvovolume.h
+++ b/linden/indra/newview/llvovolume.h
@@ -91,6 +91,7 @@ public:
91 91
92public: 92public:
93 LLVOVolume(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp); 93 LLVOVolume(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp);
94 /*virtual*/ void markDead(); // Override (and call through to parent) to clean up sculpt texture references
94 95
95 /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline); 96 /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline);
96 97
@@ -247,6 +248,9 @@ public:
247 static F32 sLODSlopDistanceFactor;// Changing this to zero, effectively disables the LOD transition slop 248 static F32 sLODSlopDistanceFactor;// Changing this to zero, effectively disables the LOD transition slop
248 static F32 sLODFactor; // LOD scale factor 249 static F32 sLODFactor; // LOD scale factor
249 static F32 sDistanceFactor; // LOD distance factor 250 static F32 sDistanceFactor; // LOD distance factor
251 static F32 sSculptSAThresh; // Surface area at which sculpts are considered for not being rendered
252 static F32 sSculptSAMax; // The maximum combined surface area of sculpts(per frame) that are above the
253 // threshold before they stop being rendered
250 254
251protected: 255protected:
252 static S32 sNumLODChanges; 256 static S32 sNumLODChanges;