summaryrefslogtreecommitdiff
path: root/indra/llprimitive/lltextureentry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llprimitive/lltextureentry.cpp')
-rwxr-xr-xindra/llprimitive/lltextureentry.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/llprimitive/lltextureentry.cpp b/indra/llprimitive/lltextureentry.cpp
index 0db75a0e82..9e822e495c 100755
--- a/indra/llprimitive/lltextureentry.cpp
+++ b/indra/llprimitive/lltextureentry.cpp
@@ -191,6 +191,13 @@ bool LLTextureEntry::operator==(const LLTextureEntry &rhs) const
return(true);
}
+bool LLTextureEntry::operator <(const LLTextureEntry &rhs) const
+{
+ if (mID < rhs.mID) return(true);
+ if (mMaterialID < rhs.mMaterialID) return (true);
+ return(false);
+}
+
LLSD LLTextureEntry::asLLSD() const
{
LLSD sd;
@@ -545,7 +552,7 @@ S32 LLTextureEntry::setMaterialID(const LLMaterialID& pMaterialID)
{
mMaterialUpdatePending = true;
mMaterialID = pMaterialID;
- return TEM_CHANGE_TEXTURE;
+ return TEM_CHANGE_NONE;
}
mMaterialUpdatePending = false;