summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llrender/llrendernavprim.h3
-rw-r--r--indra/newview/pipeline.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/indra/llrender/llrendernavprim.h b/indra/llrender/llrendernavprim.h
index d88fe656b7..158093690e 100644
--- a/indra/llrender/llrendernavprim.h
+++ b/indra/llrender/llrendernavprim.h
@@ -47,7 +47,8 @@ public:
void renderNavMeshVB( LLVertexBuffer* pVBO, int vertCnt );
//Draw a star
void renderStar( const LLVector3& center, const float scale, int color ) const;
-
+ //Flush the device
+ void flushDevice() { gGL.flush(); }
private:
};
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index 28d59785d3..f0c5342425 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -4335,7 +4335,7 @@ void LLPipeline::renderDebug()
//NavMesh
if ( pathfindingConsole->isRenderNavMesh() )
{
- glLineWidth(1.5f);
+ glLineWidth(2.0f);
LLGLEnable cull(GL_CULL_FACE);
if ( pathfindingConsole->isRenderWorld() )
{