diff options
Diffstat (limited to 'linden/indra/newview/llfasttimerview.cpp')
-rw-r--r-- | linden/indra/newview/llfasttimerview.cpp | 4 |
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]; |