diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-10-24 18:36:31 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-10-24 18:36:31 +0200 |
commit | c76ec58f06c0f70afeaa57f357166e88d7242489 (patch) | |
tree | 2ae157f19adc3eb2acad2c8817c5ba24384df9f9 | |
parent | bafc045bccffd2314d246f93d84dbaf80bf6eacc (diff) |
add a OpenGLContext to unix backend
Change-Id: I71a3e3e12aad88714b37116bc2a619df75277588
-rw-r--r-- | vcl/inc/openglgdiimpl.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/inc/openglgdiimpl.hxx b/vcl/inc/openglgdiimpl.hxx index fcdd776ce72d..6ce94cb6dbe8 100644 --- a/vcl/inc/openglgdiimpl.hxx +++ b/vcl/inc/openglgdiimpl.hxx @@ -23,8 +23,14 @@ #include "salgdiimpl.hxx" #include <vcl/dllapi.h> +#include <vcl/opengl/OpenGLContext.hxx> + class VCL_PLUGIN_PUBLIC OpenGLSalGraphicsImpl : public SalGraphicsImpl { +private: + + OpenGLContext maContext; + public: virtual ~OpenGLSalGraphicsImpl (); |