aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfasttimerview.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:49 -0500
committerJacek Antonelli2008-08-15 23:45:49 -0500
commit8538c0f35dc5fb780f02930256e627e5266ede4a (patch)
tree58950646aae6534fafe680a5cf879d01cd99d254 /linden/indra/newview/llfasttimerview.cpp
parentSecond Life viewer sources 1.20.5 (diff)
downloadmeta-impy-8538c0f35dc5fb780f02930256e627e5266ede4a.zip
meta-impy-8538c0f35dc5fb780f02930256e627e5266ede4a.tar.gz
meta-impy-8538c0f35dc5fb780f02930256e627e5266ede4a.tar.bz2
meta-impy-8538c0f35dc5fb780f02930256e627e5266ede4a.tar.xz
Second Life viewer sources 1.20.6
Diffstat (limited to 'linden/indra/newview/llfasttimerview.cpp')
-rw-r--r--linden/indra/newview/llfasttimerview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfasttimerview.cpp b/linden/indra/newview/llfasttimerview.cpp
index 372d8fa..047016f 100644
--- a/linden/indra/newview/llfasttimerview.cpp
+++ b/linden/indra/newview/llfasttimerview.cpp
@@ -978,7 +978,7 @@ void LLFastTimerView::draw()
978 978
979 gGL.color4f(0.5f,0.5f,0.5f,1); 979 gGL.color4f(0.5f,0.5f,0.5f,1);
980 980
981 gGL.begin(GL_LINES); 981 gGL.begin(LLVertexBuffer::LINES);
982 gGL.vertex2i((S32)bar, graph_rect.mBottom); 982 gGL.vertex2i((S32)bar, graph_rect.mBottom);
983 gGL.vertex2i((S32)bar, graph_rect.mTop); 983 gGL.vertex2i((S32)bar, graph_rect.mTop);
984 gGL.end(); 984 gGL.end();
@@ -1014,7 +1014,7 @@ void LLFastTimerView::draw()
1014 } 1014 }
1015 1015
1016 gGL.color4f(col[0], col[1], col[2], alpha); 1016 gGL.color4f(col[0], col[1], col[2], alpha);
1017 gGL.begin(GL_LINE_STRIP); 1017 gGL.begin(LLVertexBuffer::LINE_STRIP);
1018 for (U32 j = 0; j < LLFastTimer::FTM_HISTORY_NUM; j++) 1018 for (U32 j = 0; j < LLFastTimer::FTM_HISTORY_NUM; j++)
1019 { 1019 {
1020 U64 ticks = ticks_sum[j+1][idx]; 1020 U64 ticks = ticks_sum[j+1][idx];