diff options
author | Eric M. Tulla (BigPapi) <tulla@lindenlab.com> | 2009-11-02 18:50:50 -0500 |
---|---|---|
committer | Eric M. Tulla (BigPapi) <tulla@lindenlab.com> | 2009-11-02 18:50:50 -0500 |
commit | f344c5b7ecf721329ef87044eeec06c6669618d8 (patch) | |
tree | 8fa72140850464070bcb9342eb04f6be51106cb9 /indra | |
parent | 20d9a214681d9d8c00fe5e2a524bf0f9ed97fd5c (diff) |
Fix for EXT-894: upload anim preview was using bad texture data instead of grey.
Switched rendering of dummy mesh for previews (anim, etc) to use default image,
instead of default avatar image.
-Reviewed by nyx
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerjointmesh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerjointmesh.cpp b/indra/newview/llviewerjointmesh.cpp index cd60a8d560..5b8902dec4 100644 --- a/indra/newview/llviewerjointmesh.cpp +++ b/indra/newview/llviewerjointmesh.cpp @@ -582,7 +582,7 @@ U32 LLViewerJointMesh::drawShape( F32 pixelArea, BOOL first_pass, BOOL is_dummy) } else { - gGL.getTexUnit(0)->bind(LLViewerTextureManager::getFetchedTexture(IMG_DEFAULT_AVATAR)); + gGL.getTexUnit(0)->bind(LLViewerTextureManager::getFetchedTexture(IMG_DEFAULT)); } if (gRenderForSelect) |