From 790554b218e49141d999b4ef21ecaaa567535665 Mon Sep 17 00:00:00 2001 From: prep Date: Wed, 7 Mar 2012 11:19:13 -0500 Subject: Fix for overlaying navmesh on renderable geometry. --- indra/newview/pipeline.cpp | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) (limited to 'indra/newview') diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 2c61f70ef4..87e21c1f05 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4328,7 +4328,10 @@ void LLPipeline::renderDebug() LLMemType mt(LLMemType::MTYPE_PIPELINE); assertInitialized(); - + if (LLGLSLShader::sNoFixedFunction) + { + gUIProgram.bind(); + } //Render any navmesh geometry LLPathingLib *llPathingLibInstance = LLPathingLib::getInstance(); if ( llPathingLibInstance != NULL ) @@ -4337,18 +4340,26 @@ void LLPipeline::renderDebug() if (!pathfindingConsoleHandle.isDead()) { LLFloaterPathfindingConsole *pathfindingConsole = pathfindingConsoleHandle.get(); - //Determine if we can should overlay the navmesh ontop of the scenes typical renderables - //allowRenderables = pathfindingConsole->isRenderWorld(); - //NavMesh if ( pathfindingConsole->isRenderNavMesh() ) - { - glClearColor(0,0,0,0); - glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); - //LLGLDisable lighting(GL_LIGHTING); + { + glLineWidth(1.5f); + LLGLEnable cull(GL_CULL_FACE); + if ( pathfindingConsole->isRenderWorld() ) + { + glPolygonMode( GL_FRONT_AND_BACK, GL_LINE ); + } + else + { + glClearColor(0,0,0,0); + glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT); + glPolygonMode( GL_FRONT_AND_BACK, GL_FILL ); + } llPathingLibInstance->renderNavMesh(); + glPolygonMode( GL_FRONT_AND_BACK, GL_FILL ); + glLineWidth(1.0f); gGL.flush(); - } + } //physics/exclusion shapes if ( pathfindingConsole->isRenderAnyShapes() ) { @@ -4361,7 +4372,11 @@ void LLPipeline::renderDebug() } } } - + gGL.flush(); + if (LLGLSLShader::sNoFixedFunction) + { + gUIProgram.unbind(); + } gGL.color4f(1,1,1,1); -- cgit v1.2.3