Compiler fix for last commit

This commit is contained in:
Mark Watkins 2013-01-18 07:52:29 +10:00
parent b49063b85e
commit ea55c36323

View File

@ -985,6 +985,12 @@ public:
//! \brief Use a QGLPixelBuffer to render to a pixmap //! \brief Use a QGLPixelBuffer to render to a pixmap
QImage pbRenderPixmap(int w,int h); 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: protected:
//! \brief Set up the OpenGL basics for the QGLWidget underneath //! \brief Set up the OpenGL basics for the QGLWidget underneath
virtual void initializeGL(); virtual void initializeGL();
@ -1035,11 +1041,6 @@ protected:
//! \brief Add Graph to drawing queue, mainly for the benefit of multithreaded drawing code //! \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 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 //! \brief the list of graphs to draw this frame
QList<gGraph *> m_drawlist; QList<gGraph *> m_drawlist;