diff options
author | prep <prep@lindenlab.com> | 2012-06-06 12:00:21 -0400 |
---|---|---|
committer | prep <prep@lindenlab.com> | 2012-06-06 12:00:21 -0400 |
commit | 208d73f52497c7e4c15f21843428ffa6a3db7aaa (patch) | |
tree | 33b8e5c9fa2a650a0487450cc914d80695d44856 /indra/newview | |
parent | a48ee0e86ade940014cb5f58b8ab6f4517789455 (diff) |
Render fix to remove blend artifacts on physics capsule. llphysics extension lib update (path-680, path-681).
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/pipeline.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index d54accfea5..3531599764 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -4385,8 +4385,7 @@ void LLPipeline::renderDebug() { //remove blending artifacts gGL.setColorMask(false, false); - llPathingLibInstance->renderPathBookend( gGL, LLPathingLib::LLPL_START ); - llPathingLibInstance->renderPathBookend( gGL, LLPathingLib::LLPL_END ); + llPathingLibInstance->renderSimpleShapeCapsuleID( gGL, id, pos ); gGL.setColorMask(true, false); LLGLEnable blend(GL_BLEND); gPathfindingProgram.uniform1f("alpha_scale", 0.90f); |