diff options
| author | prep <prep@lindenlab.com> | 2012-01-19 14:38:16 -0500 |
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2012-01-19 14:38:16 -0500 |
| commit | e2ef5a5edce6a01724d91fde5b471b0bae18d045 (patch) | |
| tree | b5b0bb9796cd893aad8ce3ca329dfcb11026b035 /indra/llrender/llrendernavprim.h | |
| parent | e683c48e466c264642dc42997327410fb6ebae7f (diff) | |
Path-196 : vbo cleanup, visual fixes (path-222)
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:
};
|
