diff options
author | Oz Linden <oz@lindenlab.com> | 2013-02-04 09:38:06 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-02-04 09:38:06 -0500 |
commit | 68ec77127b158f0abffb6160eb7d870c85b278ad (patch) | |
tree | ad43a05bb4a45449d27f4c077ef8ca653f35d7b9 /indra/newview/llface.h | |
parent | 19233999edfd143d0e7f8e3743dc07455d206172 (diff) | |
parent | 7cc7ae873c5aeca9b5939176fb70677365e25395 (diff) |
merge tonyas loop fixes
Diffstat (limited to 'indra/newview/llface.h')
-rw-r--r-- | indra/newview/llface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llface.h b/indra/newview/llface.h index de4d03351c..cb76c6e8a6 100644 --- a/indra/newview/llface.h +++ b/indra/newview/llface.h @@ -111,6 +111,8 @@ public: void setTextureIndex(U8 index); U8 getTextureIndex() const { return mTextureIndex; } void setTexture(LLViewerTexture* tex) ; + void setNormalMap(LLViewerTexture* tex); + void setSpecularMap(LLViewerTexture* tex); void switchTexture(LLViewerTexture* new_texture); void dirtyTexture(); LLXformMatrix* getXform() const { return mXform; } @@ -266,6 +268,8 @@ public: F32 mLastSkinTime; F32 mLastMoveTime; LLMatrix4* mTextureMatrix; + LLMatrix4* mSpecMapMatrix; + LLMatrix4* mNormalMapMatrix; LLDrawInfo* mDrawInfo; private: @@ -285,6 +289,8 @@ private: LLXformMatrix* mXform; LLPointer<LLViewerTexture> mTexture; + LLPointer<LLViewerTexture> mSpecMap; + LLPointer<LLViewerTexture> mNormalMap; LLPointer<LLDrawable> mDrawablep; LLPointer<LLViewerObject> mVObjp; S32 mTEOffset; |