Left out some more stuff in last commit

This commit is contained in:
Mark Watkins 2014-05-17 00:18:39 +10:00
parent 7a347f67fd
commit a5740df0a9
2 changed files with 13 additions and 3 deletions

View File

@ -234,7 +234,7 @@ gGraph *gGraphView::popGraph()
gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
#ifdef BROKEN_OPENGL_BUILD
: QWidget(parent)
: QWidget(parent),
#else
: QGLWidget(QGLFormat(QGL::DoubleBuffer | QGL::DirectRendering | QGL::HasOverlay | QGL::Rgba),parent,shared),
#endif
@ -948,7 +948,11 @@ bool gGraphView::renderGraphs(QPainter &painter)
return numgraphs > 0;
}
#ifdef BROKEN_OPENGL_BUILD
void gGraphView::paintEvent(QPaintEvent *)
#else
void gGraphView::paintGL()
#endif
{
#ifdef DEBUG_EFFICIENCY
QElapsedTimer time;
@ -1041,7 +1045,10 @@ void gGraphView::paintGL()
#endif
painter.end();
#ifndef BROKEN_OPENGL_BUILD
swapBuffers();
#endif
if (this->isVisible() && !graphs_drawn && render_cube) { // keep the cube spinning
redrawtimer->setInterval(1000.0 / 50); // 50 FPS
redrawtimer->setSingleShot(true);

View File

@ -334,9 +334,12 @@ class gGraphView
protected:
//! \brief The heart of the OpenGL drawing code
//! \brief The heart of the drawing code
#ifdef BROKEN_OPENGL_BUILD
virtual void paintEvent(QPaintEvent *);
#else
virtual void paintGL();
#endif
//! \brief Calculates the sum of all graph heights
float totalHeight();