summaryrefslogtreecommitdiff
path: root/vcl/opengl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-29 09:09:05 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-30 07:01:41 +0000
commitfbd23182ee1804fd87a13d79a71e231549767408 (patch)
treeba2e1c8af7bcfc71908ae6a1858315e6547b3c73 /vcl/opengl
parentf160d8c879b7184b2a41f2310a09c0432c14379a (diff)
loplugin:unusedfields
Change-Id: If06fffa8db050df0f9c1c7da6163575bf522382e Reviewed-on: https://gerrit.libreoffice.org/26754 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/opengl')
-rw-r--r--vcl/opengl/PackedTextureAtlas.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/opengl/PackedTextureAtlas.cxx b/vcl/opengl/PackedTextureAtlas.cxx
index 38475b1b3bdb..46fdf3b5a36b 100644
--- a/vcl/opengl/PackedTextureAtlas.cxx
+++ b/vcl/opengl/PackedTextureAtlas.cxx
@@ -111,12 +111,10 @@ struct PackedTexture
{
std::unique_ptr<ImplOpenGLTexture> mpTexture;
std::unique_ptr<Node> mpRootNode;
- int mnDeallocatedArea;
PackedTexture(int nWidth, int nHeight)
: mpTexture(new ImplOpenGLTexture(nWidth, nHeight, true))
, mpRootNode(new Node(nWidth, nHeight))
- , mnDeallocatedArea(0)
{}
};