diff options
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 8a691d3a16..89824d9da6 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4337,6 +4337,7 @@ void LLPipeline::renderDebug() {
glLineWidth(2.0f);
LLGLEnable cull(GL_CULL_FACE);
+ LLGLEnable blend(GL_BLEND);
if ( pathfindingConsole->isRenderWorld() )
{
glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
@@ -4371,6 +4372,7 @@ void LLPipeline::renderDebug() //User designated path
if ( pathfindingConsole->isRenderPath() )
{
+ LLGLEnable blend(GL_BLEND);
llPathingLibInstance->renderPath();
}
}
|