summaryrefslogtreecommitdiff
path: root/indra/llmath/llvolume.cpp
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-10-29 12:07:21 -0500
committerDave Parks <davep@lindenlab.com>2010-10-29 12:07:21 -0500
commitb6140462bffe7482c94c417fb2b3f1eda07166c9 (patch)
treebc1d33f906942a280955da8a42b9449110f18658 /indra/llmath/llvolume.cpp
parent2ee9d84f6d311537412098a2fd0d09bbecc5e7ce (diff)
parentb32cb5b1e4cd40a9e9363803d04a940616213054 (diff)
merge
Diffstat (limited to 'indra/llmath/llvolume.cpp')
-rw-r--r--indra/llmath/llvolume.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp
index a0874e859c..2411bb7900 100644
--- a/indra/llmath/llvolume.cpp
+++ b/indra/llmath/llvolume.cpp
@@ -92,11 +92,13 @@ extern BOOL gDebugGL;
void assert_aligned(void* ptr, U32 alignment)
{
+#if 0
U32 t = (U32) ptr;
if (t%alignment != 0)
{
llerrs << "WTF?" << llendl;
}
+#endif
}
BOOL check_same_clock_dir( const LLVector3& pt1, const LLVector3& pt2, const LLVector3& pt3, const LLVector3& norm)
@@ -6600,6 +6602,12 @@ BOOL LLVolumeFace::createSide(LLVolume* volume, BOOL partial_build)
}
}
+ //clear normals
+ for (U32 i = 0; i < mNumVertices; i++)
+ {
+ mNormals[i].clear();
+ }
+
//generate normals
for (U32 i = 0; i < mNumIndices/3; i++) //for each triangle
{