diff options
| author | Dave Parks <davep@lindenlab.com> | 2010-04-20 11:49:20 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2010-04-20 11:49:20 -0500 | 
| commit | 5aa958818f93e2f8b4ab2451e8fffceb740258c9 (patch) | |
| tree | d1e59ecb6e81dd5d95d457e39fb9e45872f83c9a /indra | |
| parent | 9780fa7cde008d62664cb2d5cec0b050b9ad5036 (diff) | |
Fix for bad if on calling updateMeshData
(transplanted from 06e897a5e9a67c675844993564d006de08501c72)
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 6c026ba34c..bef1d63fcf 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -3652,9 +3652,9 @@ U32 LLVOAvatar::renderSkinned(EAvatarRenderPass pass)  	LLFace* face = mDrawable->getFace(0); -	bool needs_rebuild = !face || face->mVertexBuffer.isNull(); +	bool needs_rebuild = !face || face->mVertexBuffer.isNull() || mDrawable->isState(LLDrawable::REBUILD_GEOMETRY); -	if (needs_rebuild || mDirtyMesh || mDrawable->isState(LLDrawable::REBUILD_GEOMETRY)) +	if (needs_rebuild || mDirtyMesh)  	{	//LOD changed or new mesh created, allocate new vertex buffer if needed  		if (needs_rebuild || mDirtyMesh >= 2 || mVisibilityRank <= 4)  		{  | 
