diff options
| author | Dave Parks <davep@lindenlab.com> | 2010-07-12 07:39:23 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2010-07-12 07:39:23 -0500 | 
| commit | 46768c3c6c263ec27a80c854734ce0b61d29686f (patch) | |
| tree | b0cf09049e0d5d6d43f0425799f1995027467ac4 /indra/newview | |
| parent | 66e353812f4732c77206322d271b2346dd74feec (diff) | |
Merge?
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lldrawpoolavatar.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/llface.cpp | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/lldrawpoolavatar.cpp b/indra/newview/lldrawpoolavatar.cpp index 63ca17d62d..c7e77fd6ba 100644 --- a/indra/newview/lldrawpoolavatar.cpp +++ b/indra/newview/lldrawpoolavatar.cpp @@ -1249,10 +1249,10 @@ void LLDrawPoolAvatar::updateRiggedFaceVertexBuffer(LLFace* face, const LLMeshSk  	{  		face->setGeomIndex(0);  		face->setIndicesIndex(0); -		face->setSize(vol_face.mNumVertices, vol_face.mNumIndices); +		face->setSize(vol_face.mNumVertices, vol_face.mNumIndices, true);  		face->mVertexBuffer = new LLVertexBuffer(data_mask, 0); -		face->mVertexBuffer->allocateBuffer(vol_face.mNumVertices, vol_face.mNumIndices, true); +		face->mVertexBuffer->allocateBuffer(face->getGeomCount(), face->getIndicesCount(), true);  		U16 offset = 0; diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index c48106863e..8533f9710c 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -1583,7 +1583,7 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,  	if (rebuild_weights && vf.mWeights)  	{ -		LLVector4a::memcpyNonAliased16((F32*) weights, (F32*) vf.mWeights, num_vertices/4); +		LLVector4a::memcpyNonAliased16((F32*) weights, (F32*) vf.mWeights, num_vertices*4);  	}  	if (rebuild_color)  | 
