summaryrefslogtreecommitdiff
path: root/vcl/opengl/FixedTextureAtlas.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/opengl/FixedTextureAtlas.cxx')
-rw-r--r--vcl/opengl/FixedTextureAtlas.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/opengl/FixedTextureAtlas.cxx b/vcl/opengl/FixedTextureAtlas.cxx
index 33a5a1360374..aeece80a7760 100644
--- a/vcl/opengl/FixedTextureAtlas.cxx
+++ b/vcl/opengl/FixedTextureAtlas.cxx
@@ -119,7 +119,7 @@ OpenGLTexture FixedTextureAtlasManager::Reserve(int nWidth, int nHeight)
int nX = (nSlot % mWidthFactor) * mSubTextureSize;
int nY = (nSlot / mWidthFactor) * mSubTextureSize;
- Rectangle aRectangle(Point(nX, nY), Size(nWidth, nHeight));
+ tools::Rectangle aRectangle(Point(nX, nY), Size(nWidth, nHeight));
return OpenGLTexture(pFixedTexture->mpTexture, aRectangle, nSlot);
}