diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-04-18 18:34:54 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-18 18:34:54 -0700 |
commit | 12207b5f2ce14503064ea0af273303eec0cb2ce7 (patch) | |
tree | b984cc1701a1f7114b989bcd5ef13254a0b2428f /indra/newview/pipeline.cpp | |
parent | d2850572a452d74625a9b736563c479bc5f1e4cc (diff) |
Ensuring that the pathfinding console member variables are private with accessor functions where need be.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index d79812aa1b..02ef301fd0 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4353,7 +4353,7 @@ void LLPipeline::renderDebug() if ( !pathfindingConsole->isRenderWorld() )
{
- const LLColor4 &clearColor = pathfindingConsole->mNavMeshColors.mNavMeshClear;
+ const LLColor4 &clearColor = pathfindingConsole->getNavMeshBackgroundColor();
gGL.setColorMask(true, true);
glClearColor(clearColor.mV[0],clearColor.mV[1],clearColor.mV[2],0);
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
|