diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-08-10 14:50:11 -0500 |
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-08-10 14:50:11 -0500 |
| commit | 265db1f17c74c8e21a532e2e85a623383ef84728 (patch) | |
| tree | 98d3771410e4b96af9009dd6566d1481d07e8bd2 /indra/newview/lltracker.cpp | |
| parent | 17f46868d28876b65adcf24a45e6c19a20f2834c (diff) | |
| parent | db92b0369194f1a81b92fd3fa72458eb0c1d2f20 (diff) | |
merge
Diffstat (limited to 'indra/newview/lltracker.cpp')
| -rw-r--r-- | indra/newview/lltracker.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/lltracker.cpp b/indra/newview/lltracker.cpp index 983108391f..2ec7534025 100644 --- a/indra/newview/lltracker.cpp +++ b/indra/newview/lltracker.cpp @@ -506,7 +506,8 @@ void LLTracker::renderBeacon(LLVector3d pos_global, glMatrixMode(GL_MODELVIEW); - glPushMatrix(); + gGL.pushMatrix(); + { glTranslatef(pos_agent.mV[0], pos_agent.mV[1], pos_agent.mV[2]); draw_shockwave(1024.f, gRenderStartTime.getElapsedTimeF32(), 32, fogged_color); @@ -559,9 +560,8 @@ void LLTracker::renderBeacon(LLVector3d pos_global, gGL.end(); } - - //gCylinder.render(1000); - glPopMatrix(); + } + gGL.popMatrix(); std::string text; text = llformat( "%.0f m", to_vec.magVec()); |
