diff options
author | Oz Linden <oz@lindenlab.com> | 2013-05-24 12:55:52 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-05-24 12:55:52 -0400 |
commit | ad89d26dc676dc090e58a3457d62bccbd7dc7e21 (patch) | |
tree | 1fd4a031d6ef975e6c36e9b71abab13f684d7e26 /indra/newview/lllocalbitmaps.cpp | |
parent | c3804fd041bc606cb20af615f6f030365202bedc (diff) |
norspec-107: remove the need for a friend declaration in local textures
Diffstat (limited to 'indra/newview/lllocalbitmaps.cpp')
-rwxr-xr-x | indra/newview/lllocalbitmaps.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 724c7cca0f..2d9385390b 100755 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -485,10 +485,8 @@ void LLLocalBitmap::updateUserPrims(LLUUID old_id, LLUUID new_id, U32 channel) } if (update_mat) - { // i had to make LLLocalBitmap friend of LLVOVolume for this, - // i realize it might seem somewhat hacky, but it's also simple. - // will gladly accept a better solution though. - object->mDrawable->getVOVolume()->mFaceMappingChanged = TRUE; + { + object->mDrawable->getVOVolume()->faceMappingChanged(); } } } |