From 7200b1500247ebdfbf69bb125c80b9528050698c Mon Sep 17 00:00:00 2001 From: prep Date: Tue, 24 Apr 2012 13:15:00 -0400 Subject: Added support for rendering the regions water height. --- indra/newview/pipeline.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 89ce6c8cd8..b162ec422a 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4437,6 +4437,20 @@ void LLPipeline::renderDebug() } } + + if ( pathfindingConsole->isRenderWaterPlane() ) + { + if (LLGLSLShader::sNoFixedFunction) + { + LLGLEnable blend(GL_BLEND); + gPathfindingProgram.uniform1f("alpha_scale", 0.90f); + llPathingLibInstance->renderSimpleShapes( gGL, gAgent.getRegion()->getWaterHeight() ); + } + else + { + llPathingLibInstance->renderSimpleShapes( gGL, gAgent.getRegion()->getWaterHeight() ); + } + } //physics/exclusion shapes if ( pathfindingConsole->isRenderAnyShapes() ) { -- cgit v1.2.3