aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llface.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:01 -0500
committerJacek Antonelli2008-08-15 23:45:01 -0500
commit28d8d4e7664bcd6c8369cc18832e42096af7cad2 (patch)
tree069020fe66339aff2ca4176370ff743b14713f2d /linden/indra/newview/llface.h
parentSecond Life viewer sources 1.17.2.0 (diff)
downloadmeta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.zip
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.gz
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.bz2
meta-impy-28d8d4e7664bcd6c8369cc18832e42096af7cad2.tar.xz
Second Life viewer sources 1.17.3.0
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; }