| 474 | } |
| 475 | |
| 476 | bool MutableLabelHandle::Update(ScreenBase const & screen) |
| 477 | { |
| 478 | if (!m_glyphsReady) |
| 479 | m_glyphsReady = m_textureManager->AreGlyphsReady(m_textView->GetGlyphs()); |
| 480 | |
| 481 | if (!m_glyphsReady) |
| 482 | return false; |
| 483 | |
| 484 | return TBase::Update(screen); |
| 485 | } |
| 486 | |
| 487 | void MutableLabelHandle::SetTextureManager(ref_ptr<dp::TextureManager> textures) |
| 488 | { |
nothing calls this directly
no test coverage detected