Skip to content
Snippets Groups Projects
Commit 16443c4d authored by Merov Linden's avatar Merov Linden
Browse files

STORM-1001 : Fix ObjectMedia cap flooding (Fix by Kitty Barnett)

parent 1426765e
No related branches found
No related tags found
No related merge requests found
...@@ -423,6 +423,7 @@ Kitty Barnett ...@@ -423,6 +423,7 @@ Kitty Barnett
STORM-288 STORM-288
STORM-799 STORM-799
STORM-800 STORM-800
STORM-1001
VWR-24217 VWR-24217
Kunnis Basiat Kunnis Basiat
VWR-82 VWR-82
......
...@@ -423,24 +423,10 @@ S32 LLTextureEntry::setBumpShinyFullbright(U8 bump) ...@@ -423,24 +423,10 @@ S32 LLTextureEntry::setBumpShinyFullbright(U8 bump)
S32 LLTextureEntry::setMediaTexGen(U8 media) S32 LLTextureEntry::setMediaTexGen(U8 media)
{ {
if (mMediaFlags != media) S32 result = TEM_CHANGE_NONE;
{ result |= setTexGen(media & TEM_TEX_GEN_MASK);
mMediaFlags = media; result |= setMediaFlags(media & TEM_MEDIA_MASK);
return result;
// Special code for media handling
if( hasMedia() && mMediaEntry == NULL)
{
mMediaEntry = new LLMediaEntry;
}
else if ( ! hasMedia() && mMediaEntry != NULL)
{
delete mMediaEntry;
mMediaEntry = NULL;
}
return TEM_CHANGE_MEDIA;
}
return TEM_CHANGE_NONE;
} }
S32 LLTextureEntry::setBumpmap(U8 bump) S32 LLTextureEntry::setBumpmap(U8 bump)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment