summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-04-16 15:21:30 +0200
committerJan Holesovsky <kendy@collabora.com>2014-04-16 15:23:10 +0200
commit7a8146e080ef13e066d29e4bff354b732980c2a8 (patch)
tree1ed76cfd25304f52d70ed584032940a015386805 /include
parentc553a2fd3d5a33c41fcc0b14b7a89619f50e893f (diff)
non-desktop: Attempt to get rid of glew.
Change-Id: I883ff114ebd98234fcc9f41d69de96aadedadf4b
Diffstat (limited to 'include')
-rw-r--r--include/svx/svdoopengl.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/svx/svdoopengl.hxx b/include/svx/svdoopengl.hxx
index 22034436a718..49eb73d4f249 100644
--- a/include/svx/svdoopengl.hxx
+++ b/include/svx/svdoopengl.hxx
@@ -26,10 +26,11 @@ class IOpenGLRenderer;
class SVX_DLLPUBLIC SdrOpenGLObj : public SdrObject, public IOpenGLInfoProvider
{
public:
+ SdrOpenGLObj();
virtual ~SdrOpenGLObj();
virtual sdr::contact::ViewContact* CreateObjectSpecificViewContact() SAL_OVERRIDE;
- OpenGLContext& getOpenGLContext();
+ OpenGLContext* getOpenGLContext();
virtual void NbcResize(const Point& rRef, const Fraction& xFact, const Fraction& yFact) SAL_OVERRIDE;
@@ -40,7 +41,7 @@ public:
private:
- OpenGLContext maContext;
+ OpenGLContext* mpContext;
boost::scoped_ptr<IOpenGLRenderer> mpRenderer;
};