diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-08-03 15:06:55 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2015-08-07 00:58:19 +0000 |
commit | dea885f80a80c6a5839ee5dbf8521487186a9522 (patch) | |
tree | b211f8bb3f57bb7da9763e2d4ca83eb08a6e9b5b /vcl/inc/openglgdiimpl.hxx | |
parent | 4c57e8bb69ac727713a23a066ac6ed618eff28c8 (diff) |
opengl: cache native widget textures also for Windows
Change-Id: I476f0ffaef383f3227c0c12b50fcdebf393190f6
Reviewed-on: https://gerrit.libreoffice.org/17487
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'vcl/inc/openglgdiimpl.hxx')
-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 caa883dca899..f0338b7b1d46 100644 --- a/vcl/inc/openglgdiimpl.hxx +++ b/vcl/inc/openglgdiimpl.hxx @@ -40,6 +40,12 @@ namespace basegfx class B2DTrapezoid; }; +struct TextureCombo +{ + std::unique_ptr<OpenGLTexture> mpTexture; + std::unique_ptr<OpenGLTexture> mpMask; +}; + class VCL_PLUGIN_PUBLIC OpenGLSalGraphicsImpl : public SalGraphicsImpl { protected: |