aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llface.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llface.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llface.h b/linden/indra/newview/llface.h
index 6870789..711cd8e 100644
--- a/linden/indra/newview/llface.h
+++ b/linden/indra/newview/llface.h
@@ -75,11 +75,11 @@ public:
75 75
76 const LLMatrix4& getWorldMatrix() const { return mVObjp->getWorldMatrix(mXform); } 76 const LLMatrix4& getWorldMatrix() const { return mVObjp->getWorldMatrix(mXform); }
77 const LLMatrix4& getRenderMatrix() const; 77 const LLMatrix4& getRenderMatrix() const;
78 const U32 getIndicesCount() const { return mIndicesCount; }; 78 U32 getIndicesCount() const { return mIndicesCount; };
79 const S32 getIndicesStart() const { return mIndicesIndex; }; 79 S32 getIndicesStart() const { return mIndicesIndex; };
80 const S32 getGeomCount() const { return mGeomCount; } // vertex count for this face 80 S32 getGeomCount() const { return mGeomCount; } // vertex count for this face
81 const S32 getGeomIndex() const { return mGeomIndex; } // index into draw pool 81 S32 getGeomIndex() const { return mGeomIndex; } // index into draw pool
82 const U32 getGeomStart() const { return mGeomIndex; } // index into draw pool 82 U32 getGeomStart() const { return mGeomIndex; } // index into draw pool
83 LLViewerImage* getTexture() const { return mTexture; } 83 LLViewerImage* getTexture() const { return mTexture; }
84 void setTexture(LLViewerImage* tex) { mTexture = tex; } 84 void setTexture(LLViewerImage* tex) { mTexture = tex; }
85 LLXformMatrix* getXform() const { return mXform; } 85 LLXformMatrix* getXform() const { return mXform; }