| 303 | } |
| 304 | |
| 305 | dp::TGlyphs MutableLabel::GetGlyphs() const |
| 306 | { |
| 307 | dp::TGlyphs glyphs; |
| 308 | glyphs.reserve(m_shapedText.m_glyphs.size()); |
| 309 | |
| 310 | for (auto const & glyph : m_shapedText.m_glyphs) |
| 311 | glyphs.emplace_back(glyph.m_key); |
| 312 | return glyphs; |
| 313 | } |
| 314 | |
| 315 | void MutableLabel::Precache(PrecacheParams const & params, PrecacheResult & result, ref_ptr<dp::TextureManager> mng) |
| 316 | { |
no test coverage detected