mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Compiler fix for last commit
This commit is contained in:
parent
b49063b85e
commit
ea55c36323
@ -985,6 +985,12 @@ public:
|
||||
//! \brief Use a QGLPixelBuffer to render to a pixmap
|
||||
QImage pbRenderPixmap(int w,int h);
|
||||
|
||||
//! \brief Enable or disable the Text Pixmap Caching system (much faster on)
|
||||
void setUsePixmapCache(bool b) { use_pixmap_cache=b; }
|
||||
|
||||
//! \brief Return whether or not the Pixmap Cache for text rendering is being used.
|
||||
bool usePixmapCache() { return use_pixmap_cache; }
|
||||
|
||||
protected:
|
||||
//! \brief Set up the OpenGL basics for the QGLWidget underneath
|
||||
virtual void initializeGL();
|
||||
@ -1035,11 +1041,6 @@ protected:
|
||||
//! \brief Add Graph to drawing queue, mainly for the benefit of multithreaded drawing code
|
||||
void queGraph(gGraph *,int originX, int originY, int width, int height);
|
||||
|
||||
|
||||
void setUsePixmapCache(bool b) { use_pixmap_cache=b; }
|
||||
|
||||
bool usePixmapCache() { return use_pixmap_cache; }
|
||||
|
||||
//! \brief the list of graphs to draw this frame
|
||||
QList<gGraph *> m_drawlist;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user