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.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/vcl/opengl/FixedTextureAtlas.cxx b/vcl/opengl/FixedTextureAtlas.cxx
index a81a4c113054..77c659f2bec6 100644
--- a/vcl/opengl/FixedTextureAtlas.cxx
+++ b/vcl/opengl/FixedTextureAtlas.cxx
@@ -18,8 +18,6 @@
#include <opengl/FixedTextureAtlas.hxx>
-#include <o3tl/make_unique.hxx>
-
struct FixedTexture
{
std::shared_ptr<ImplOpenGLTexture> mpTexture;
@@ -90,7 +88,7 @@ void FixedTextureAtlasManager::CreateNewTexture()
{
int nTextureWidth = mWidthFactor * mSubTextureSize;
int nTextureHeight = mHeightFactor * mSubTextureSize;
- maFixedTextures.push_back(o3tl::make_unique<FixedTexture>(nTextureWidth, nTextureHeight, mWidthFactor * mHeightFactor));
+ maFixedTextures.push_back(std::make_unique<FixedTexture>(nTextureWidth, nTextureHeight, mWidthFactor * mHeightFactor));
}
OpenGLTexture FixedTextureAtlasManager::Reserve(int nWidth, int nHeight)