Moved render speed indicator to top left corner, shows when Debug view is visible

This commit is contained in:
Mark Watkins 2011-09-03 15:01:55 +10:00
parent c01dae2287
commit 817604c2f8

View File

@ -1357,8 +1357,8 @@ void gGraphView::paintGL()
}
py=ceil(py+h+graphSpacer);
}
if (!numgraphs) {
QColor col=Qt::black;
if (!numgraphs) {
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