diff options
author | prep <prep@lindenlab.com> | 2012-03-22 15:56:00 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-03-22 15:56:00 -0400 |
commit | 89d20b750cbedc682dd203c0727c9e8fa5ebad6c (patch) | |
tree | 9b544f5d61d538f8a99bb8570b05cd2b71b3860e /indra/llrender/llrendernavprim.h | |
parent | a36f71af4ca748a0e7aed760d2fa451d60593187 (diff) |
Removed dead code
Diffstat (limited to 'indra/llrender/llrendernavprim.h')
-rw-r--r-- | indra/llrender/llrendernavprim.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llrender/llrendernavprim.h b/indra/llrender/llrendernavprim.h index b5509d9c5e..044a20f0fe 100644 --- a/indra/llrender/llrendernavprim.h +++ b/indra/llrender/llrendernavprim.h @@ -40,11 +40,11 @@ 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 ) 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 ) const;
//Draw simple tri
- void renderLLTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, const LLColor4U& color, bool overlayMode ) const;
+ void renderLLTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, const LLColor4U& color ) const;
//Draw the contents of vertex buffer
void renderNavMeshVB( LLVertexBuffer* pVBO, int vertCnt );
//Draw a star
|