summaryrefslogtreecommitdiff
path: root/include/vcl/opengl
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-11-16 14:51:28 +0000
committerMichael Meeks <michael.meeks@collabora.com>2015-11-16 17:24:59 +0000
commit9801b2c24c3115b52de3f6958eb462648d702491 (patch)
treed09b8f3f3756cf8808932b88cf31c19542a36b25 /include/vcl/opengl
parent4ad05823f6c2edb0f5fbf5794b2deb6c163686a2 (diff)
opengl: remove unused mbPixmap & glPix members.
We use textures bound to FBO's for everything in recent times. Change-Id: I7c9068d75b3653a2ceff0056e2ade1f27955422f Reviewed-on: https://gerrit.libreoffice.org/19995 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Diffstat (limited to 'include/vcl/opengl')
-rw-r--r--include/vcl/opengl/OpenGLContext.hxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/vcl/opengl/OpenGLContext.hxx b/include/vcl/opengl/OpenGLContext.hxx
index 82a9d638abb3..28db7f9ed814 100644
--- a/include/vcl/opengl/OpenGLContext.hxx
+++ b/include/vcl/opengl/OpenGLContext.hxx
@@ -84,7 +84,6 @@ struct GLWindow
#endif
XVisualInfo* vi;
GLXContext ctx;
- GLXPixmap glPix;
bool HasGLXExtension( const char* name ) const;
const char* GLXExtensions;
@@ -115,7 +114,6 @@ struct GLWindow
#endif
vi(nullptr),
ctx(nullptr),
- glPix(0),
GLXExtensions(nullptr),
#endif
bpp(0),
@@ -230,9 +228,6 @@ private:
int mnRefCount;
bool mbRequestLegacyContext;
bool mbUseDoubleBufferedRendering;
-#if defined( UNX ) && !defined MACOSX && !defined IOS && !defined ANDROID && !defined(LIBO_HEADLESS)
- bool mbPixmap; // is a pixmap instead of a window
-#endif
int mnFramebufferCount;
OpenGLFramebuffer* mpCurrentFramebuffer;