summaryrefslogtreecommitdiff
path: root/indra/llprimitive
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2013-04-03 16:56:59 -0500
committerDave Parks <davep@lindenlab.com>2013-04-03 16:56:59 -0500
commitf189ba4a3d927fe0ecfb83b36b60a47c88525fdd (patch)
treec26bb5cdd3c40978a7a73f02b455beb57a851c68 /indra/llprimitive
parent6fcec6b47d5bef94c66bd9b01382c2ea6c94e45b (diff)
NORSPEC-71 Lots more UI hookups
Written with and Reviewed By Graham
Diffstat (limited to 'indra/llprimitive')
-rw-r--r--indra/llprimitive/llmaterial.h6
-rw-r--r--indra/llprimitive/lltextureentry.cpp4
2 files changed, 8 insertions, 2 deletions
diff --git a/indra/llprimitive/llmaterial.h b/indra/llprimitive/llmaterial.h
index fd35045e45..dc3484309c 100644
--- a/indra/llprimitive/llmaterial.h
+++ b/indra/llprimitive/llmaterial.h
@@ -32,8 +32,10 @@
#include "llmaterialid.h"
#include "llsd.h"
#include "v4coloru.h"
+#include "llpointer.h"
+#include "llrefcount.h"
-class LLMaterial
+class LLMaterial : public LLRefCount
{
public:
@@ -115,6 +117,6 @@ protected:
U8 mAlphaMaskCutoff;
};
-typedef boost::shared_ptr<LLMaterial> LLMaterialPtr;
+typedef LLPointer<LLMaterial> LLMaterialPtr;
#endif // LL_LLMATERIAL_H
diff --git a/indra/llprimitive/lltextureentry.cpp b/indra/llprimitive/lltextureentry.cpp
index 23b15b697c..691216e035 100644
--- a/indra/llprimitive/lltextureentry.cpp
+++ b/indra/llprimitive/lltextureentry.cpp
@@ -535,6 +535,10 @@ S32 LLTextureEntry::setMaterialID(const LLMaterialID& pMaterialID)
if (mMaterialID != pMaterialID)
{
mMaterialID = pMaterialID;
+ if (mMaterialID.isNull())
+ {
+ setMaterialParams(NULL);
+ }
return TEM_CHANGE_TEXTURE;
}
return TEM_CHANGE_NONE;