diff options
author | Nyx Linden <nyx@lindenlab.com> | 2013-02-06 18:38:43 -0500 |
---|---|---|
committer | Nyx Linden <nyx@lindenlab.com> | 2013-02-06 18:38:43 -0500 |
commit | 20b2e23e7d5a45f2f8efcdcc1bbf0b865cd3f89a (patch) | |
tree | 2ce48769f624dabcae7b693661fc5849ff7bb637 /indra/newview/llvoavatarself.cpp | |
parent | 1cf611b0592b1f91979bfbac7870b64f3623eef9 (diff) | |
parent | 197b12d93b01efaa545d80b6cb36989b825e029c (diff) |
merge
Diffstat (limited to 'indra/newview/llvoavatarself.cpp')
-rwxr-xr-x[-rw-r--r--] | indra/newview/llvoavatarself.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index 757d029513..aeac478d4e 100644..100755 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -759,6 +759,15 @@ U32 LLVOAvatarSelf::processUpdateMessage(LLMessageSystem *mesgsys, { U32 retval = LLVOAvatar::processUpdateMessage(mesgsys,user_data,block_num,update_type,dp); +#if 0 + // DRANO - it's not clear this does anything useful. If we wait + // until an appearance message has been received, we already have + // the texture ids. If we don't wait, we don't yet know where to + // look for baked textures, because we haven't received the + // appearance version data from the appearance message. This looks + // like an old optimization that's incompatible with server-side + // texture baking. + // FIXME DRANO - skipping in the case of !mFirstAppearanceMessageReceived prevents us from trying to // load textures before we know where they come from (ie, from baking service or not); // unknown impact on performance. @@ -783,6 +792,7 @@ U32 LLVOAvatarSelf::processUpdateMessage(LLMessageSystem *mesgsys, mInitialBakesLoaded = true; } +#endif return retval; } |