diff options
Diffstat (limited to 'indra/llrender/llrendernavprim.h')
-rw-r--r-- | indra/llrender/llrendernavprim.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/llrender/llrendernavprim.h b/indra/llrender/llrendernavprim.h index 697c344d21..f8fabfa95f 100644 --- a/indra/llrender/llrendernavprim.h +++ b/indra/llrender/llrendernavprim.h @@ -39,8 +39,12 @@ class LLRenderNavPrim
{
public:
- void renderSegment( const LLVector3& start, const LLVector3& end, int color );
- void renderTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, int color );
+ //Draw a line
+ void renderSegment( const LLVector3& start, const LLVector3& end, int color ) const;
+ //Draw simple tri
+ void renderTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, int color ) const;
+ //Draw the contents of vertex buffer
+ void renderNavMeshVB( const LLVertexBuffer* pVBO, int vertCnt ) const;
private:
};
|