mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Left out some more stuff in last commit
This commit is contained in:
parent
7a347f67fd
commit
a5740df0a9
@ -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);
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user