diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-04-09 18:53:52 -0700 |
commit | 2115211328261d875dc0ccacdc2021f1c501a36d (patch) | |
tree | 0cc143ed25cfadc2b54f37a8895523bcf44e1582 /indra/newview/pipeline.cpp | |
parent | 4888f7d34969b596e2b37ef72576118e1c0c27ac (diff) |
Re-implementing the path testing functionality as a proper LLTool.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index c2eb579bb9..526b4bb8d4 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -106,6 +106,7 @@ #include "llnotifications.h"
#include "LLPathingLib.h"
#include "llfloaterpathfindingconsole.h"
+#include "llpathfindingpathtool.h"
#ifdef _DEBUG
// Debug indices is disabled for now for debug performance - djs 4/24/02
@@ -4400,7 +4401,7 @@ void LLPipeline::renderDebug() gGL.flush();
}
//User designated path
- if ( pathfindingConsole->isRenderPath() )
+ if ( LLPathfindingPathTool::getInstance()->isRenderPath() )
{
LLGLEnable blend(GL_BLEND);
if (LLGLSLShader::sNoFixedFunction)
|