aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorArmin Weatherwax2011-02-26 11:15:10 +0100
committerJacek Antonelli2011-05-17 17:40:22 -0500
commit52ea2c6628dfd440f188c58b0dfdbb89da37280b (patch)
tree9746fea9423a8232eb2e7b9fe496b6a5db736752
parentImprudence 1.3.2 released. (diff)
downloadmeta-impy-52ea2c6628dfd440f188c58b0dfdbb89da37280b.zip
meta-impy-52ea2c6628dfd440f188c58b0dfdbb89da37280b.tar.gz
meta-impy-52ea2c6628dfd440f188c58b0dfdbb89da37280b.tar.bz2
meta-impy-52ea2c6628dfd440f188c58b0dfdbb89da37280b.tar.xz
fix llerrs crash "Vertex buffer destroyed while mapped!"
-rw-r--r--linden/indra/newview/llviewerjointmesh_sse2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llviewerjointmesh_sse2.cpp b/linden/indra/newview/llviewerjointmesh_sse2.cpp
index 550044c..450582f 100644
--- a/linden/indra/newview/llviewerjointmesh_sse2.cpp
+++ b/linden/indra/newview/llviewerjointmesh_sse2.cpp
@@ -114,7 +114,7 @@ void LLViewerJointMesh::updateGeometrySSE2(LLFace *face, LLPolyMesh *mesh)
114 ((LLV4Matrix3)blend_mat).multiply(normals[index], o_normals[index]); 114 ((LLV4Matrix3)blend_mat).multiply(normals[index], o_normals[index]);
115 } 115 }
116 116
117 //setBuffer(0) called in LLVOAvatar::renderSkinned 117 buffer->setBuffer(0);
118} 118}
119 119
120#else 120#else