summaryrefslogtreecommitdiff
path: root/indra/llrender/llrendernavprim.h
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-06-27 18:12:57 -0700
committerTodd Stinson <stinson@lindenlab.com>2012-06-27 18:12:57 -0700
commitfa562d19cf9bc698ce883191b6eea2af6abc4164 (patch)
tree43f74474fa19f454fba86832b71705c4760f6032 /indra/llrender/llrendernavprim.h
parentedf5a3f8f6f8a0c6263e1b9e20553243412bad22 (diff)
Removing unreferenced methods from the LLRenderNavPrim class.
Diffstat (limited to 'indra/llrender/llrendernavprim.h')
-rw-r--r--indra/llrender/llrendernavprim.h20
1 files changed, 5 insertions, 15 deletions
diff --git a/indra/llrender/llrendernavprim.h b/indra/llrender/llrendernavprim.h
index a0c5e4005d..a3a5dfec3a 100644
--- a/indra/llrender/llrendernavprim.h
+++ b/indra/llrender/llrendernavprim.h
@@ -27,30 +27,20 @@
#ifndef LL_LLRENDERNAVPRIM_H
#define LL_LLRENDERNAVPRIM_H
-#include "llmath.h"
-#include "v3math.h"
-#include "v4math.h"
-#include "m3math.h"
-#include "m4math.h"
-#include "v4color.h"
-#include "llgl.h"
+#include "stdtypes.h"
+
+class LLColor4U;
+class LLVector3;
+class LLVertexBuffer;
class LLRenderNavPrim
{
public:
- //Draw a line
- void renderLLSegment( const LLVector3& start, const LLVector3& end, const LLColor4U& color ) const;
- //Draw simple tri
- 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 ) const;
//Draw the contents of vertex buffer
void renderNavMeshVB( U32 mode, LLVertexBuffer* pVBO, int vertCnt );
- //Draw a star
- void renderStar( const LLVector3& center, const float scale, const LLColor4U& color ) const;
- //Flush the device
- void flushDevice() { gGL.flush(); }
private:
};