summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-04-13 13:43:43 -0500
committerDave Parks <davep@lindenlab.com>2011-04-13 13:43:43 -0500
commitb2d3f5009efb97ba13800ecf26da1bd6b2e90fa3 (patch)
treee23c3daecd42d76091da9174ff0eb31a0ea3da5e /indra
parentc6da212dc20138599cb945ff77f3c8a59b57e736 (diff)
parent12f9f521ee6baeb39b403dfe15168de7ecfd9349 (diff)
Automated merge with https://bitbucket.org/seraph/mesh-development-vs2010
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llpolymesh.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpolymesh.cpp b/indra/newview/llpolymesh.cpp
index 24f84b2ddf..4b2c569cc3 100644
--- a/indra/newview/llpolymesh.cpp
+++ b/indra/newview/llpolymesh.cpp
@@ -768,9 +768,9 @@ LLPolyMesh::LLPolyMesh(LLPolyMeshSharedData *shared_data, LLPolyMesh *reference_
// Allocate memory without initializing every vector
// NOTE: This makes asusmptions about the size of LLVector[234]
int nverts = mSharedData->mNumVertices;
- int nfloats = nverts * (2*4 + 3*3 + 2 + 4);
- //use 16 byte aligned vertex data to make LLPolyMesh SSE friendly
- mVertexData = (F32*) malloc(nfloats*4);
+ int nfloats = nverts * (2*4 + 3*3 + 2 + 4);
+ //use 16 byte aligned vertex data to make LLPolyMesh SSE friendly
+ mVertexData = (F32*) malloc(nfloats*4);
int offset = 0;
mCoords = (LLVector4*)(mVertexData + offset); offset += 4*nverts;
mNormals = (LLVector4*)(mVertexData + offset); offset += 4*nverts;