diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-01-19 18:36:21 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-01-19 18:36:21 -0800 |
commit | 154ed186eab7f6e57601cf7e08c927f3a860a9d8 (patch) | |
tree | c31869ce5e1df43e6dcdd2052db15f4ba36201d7 /indra/llrender/llrendernavprim.h | |
parent | fe637c5f9571e91c8e90440a0677e5c40b7bf648 (diff) | |
parent | d82ca578941a985fb2361ccdc4120aeeb22f82a7 (diff) |
Pull and merge from ssh://hg@bitbucket.org/stinson_linden/viewer-development-havokai.
Diffstat (limited to 'indra/llrender/llrendernavprim.h')
-rw-r--r-- | indra/llrender/llrendernavprim.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/llrender/llrendernavprim.h b/indra/llrender/llrendernavprim.h index a30a14551d..d88fe656b7 100644 --- a/indra/llrender/llrendernavprim.h +++ b/indra/llrender/llrendernavprim.h @@ -40,11 +40,13 @@ class LLRenderNavPrim {
public:
//Draw a line
- void renderSegment( const LLVector3& start, const LLVector3& end, int color,bool overlayMode ) const;
+ void renderSegment( const LLVector3& start, const LLVector3& end, int color, bool overlayMode ) const;
//Draw simple tri
- void renderTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, int color,bool overlayMode ) const;
+ void renderTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, int color, bool overlayMode ) const;
//Draw the contents of vertex buffer
- void renderNavMeshVB( LLVertexBuffer* pVBO, int vertCnt );
+ void renderNavMeshVB( LLVertexBuffer* pVBO, int vertCnt );
+ //Draw a star
+ void renderStar( const LLVector3& center, const float scale, int color ) const;
private:
};
|