From 817604c2f8a89935ce217aa96d91f06e1dd285cf Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 3 Sep 2011 15:01:55 +1000 Subject: [PATCH] Moved render speed indicator to top left corner, shows when Debug view is visible --- Graphs/gGraphView.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 70211e14..acbe52fe 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1357,8 +1357,8 @@ void gGraphView::paintGL() } py=ceil(py+h+graphSpacer); } + QColor col=Qt::black; if (!numgraphs) { - QColor col=Qt::black; int x,y; GetTextExtent(m_emptytext,x,y,bigfont); AddTextQue(m_emptytext,(width()/2)-x/2,(height()/2)+y/2,0.0,col,bigfont); @@ -1370,7 +1370,6 @@ void gGraphView::paintGL() masterlock->acquire(m_idealthreads); // ask for all the CPU's back.. masterlock->release(m_idealthreads); } - qint64 el=time.elapsed(); //((QGLContext*)context())->makeCurrent(); @@ -1381,11 +1380,17 @@ void gGraphView::paintGL() } lines->draw(); DrawTextQue(); + if (pref["ShowDebug"].toBool()) { + QString ss; + ss="Draw took "+QString::number(time.elapsed())+"ms"; + AddTextQue(ss,width()-120,8,0,col,defaultfont); + DrawTextQue(); + } //glDisable(GL_TEXTURE_2D); //glDisable(GL_DEPTH_TEST); swapBuffers(); // Dump to screen. - qDebug() << "Graph Prep,Draw" << el << "," << time.elapsed()-el << "ms x" << thr; + //qDebug() << "Graph Prep,Draw" << el << "," << time.elapsed()-el << "ms x" << thr; } // For manual scrolling