From ea55c363232d482d6e2cf7983469753a6d83de0c Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 18 Jan 2013 07:52:29 +1000 Subject: [PATCH] Compiler fix for last commit --- Graphs/gGraphView.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 4224e9cc..56de956a 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -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 m_drawlist;