diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index b3ebbfe3..b5f04100 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -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); diff --git a/sleepyhead/Graphs/gGraphView.h b/sleepyhead/Graphs/gGraphView.h index b29df5bf..9bede875 100644 --- a/sleepyhead/Graphs/gGraphView.h +++ b/sleepyhead/Graphs/gGraphView.h @@ -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();