aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llspatialpartition.h
diff options
context:
space:
mode:
authorelektrahesse2010-09-27 14:05:15 +0200
committerelektrahesse2010-09-27 14:05:15 +0200
commitb0bc29569cacfcd4fd661f6dd9e32364ebfbf243 (patch)
tree0af5d17a0ee910959e64b26f5ca2573fc269c0ff /linden/indra/newview/llspatialpartition.h
parentChanges the search system, so it matches the keyword against name or surname ... (diff)
parentConverted XUI files to unix line endings, again. (diff)
downloadmeta-impy-b0bc29569cacfcd4fd661f6dd9e32364ebfbf243.zip
meta-impy-b0bc29569cacfcd4fd661f6dd9e32364ebfbf243.tar.gz
meta-impy-b0bc29569cacfcd4fd661f6dd9e32364ebfbf243.tar.bz2
meta-impy-b0bc29569cacfcd4fd661f6dd9e32364ebfbf243.tar.xz
Merge branch 'weekly' of git://github.com/mccabe/imprudence into weekly
Diffstat (limited to 'linden/indra/newview/llspatialpartition.h')
-rw-r--r--linden/indra/newview/llspatialpartition.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/linden/indra/newview/llspatialpartition.h b/linden/indra/newview/llspatialpartition.h
index df96152..be0163b 100644
--- a/linden/indra/newview/llspatialpartition.h
+++ b/linden/indra/newview/llspatialpartition.h
@@ -481,7 +481,6 @@ private:
481 drawinfo_list_t mRenderMap[LLRenderPass::NUM_RENDER_TYPES]; 481 drawinfo_list_t mRenderMap[LLRenderPass::NUM_RENDER_TYPES];
482}; 482};
483 483
484
485//spatial partition for water (implemented in LLVOWater.cpp) 484//spatial partition for water (implemented in LLVOWater.cpp)
486class LLWaterPartition : public LLSpatialPartition 485class LLWaterPartition : public LLSpatialPartition
487{ 486{
@@ -491,6 +490,13 @@ public:
491 virtual void addGeometryCount(LLSpatialGroup* group, U32 &vertex_count, U32& index_count) { } 490 virtual void addGeometryCount(LLSpatialGroup* group, U32 &vertex_count, U32& index_count) { }
492}; 491};
493 492
493//spatial partition for hole and edge water (implemented in LLVOWater.cpp)
494class LLVoidWaterPartition : public LLWaterPartition
495{
496public:
497 LLVoidWaterPartition();
498};
499
494//spatial partition for terrain (impelmented in LLVOSurfacePatch.cpp) 500//spatial partition for terrain (impelmented in LLVOSurfacePatch.cpp)
495class LLTerrainPartition : public LLSpatialPartition 501class LLTerrainPartition : public LLSpatialPartition
496{ 502{