Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape/font_texture.hpp')
-rw-r--r--drape/font_texture.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/drape/font_texture.hpp b/drape/font_texture.hpp
index f3aea98e09..e7fd2bf0c5 100644
--- a/drape/font_texture.hpp
+++ b/drape/font_texture.hpp
@@ -117,11 +117,11 @@ class FontTexture : public DynamicTexture<GlyphIndex, GlyphKey, Texture::Resourc
public:
FontTexture(m2::PointU const & size, ref_ptr<GlyphManager> glyphMng,
ref_ptr<GlyphGenerator> glyphGenerator, ref_ptr<HWTextureAllocator> allocator)
- : m_index(size, glyphMng, glyphGenerator)
+ : m_index(size, std::move(glyphMng), std::move(glyphGenerator))
{
- TBase::TextureParams params{size, TextureFormat::Alpha,
- TextureFilter::Linear, true /* m_usePixelBuffer */};
- TBase::Init(allocator, make_ref(&m_index), params);
+ TBase::DynamicTextureParams params{size, TextureFormat::Alpha,
+ TextureFilter::Linear, true /* m_usePixelBuffer */};
+ TBase::Init(std::move(allocator), make_ref(&m_index), params);
}
~FontTexture() override { TBase::Reset(); }