| 225 | } |
| 226 | |
| 227 | void TextureManager::UpdateGlyphTextures(ref_ptr<dp::GraphicsContext> context) |
| 228 | { |
| 229 | std::lock_guard lock(m_glyphTexturesMutex); |
| 230 | for (auto & texture : m_glyphTextures) |
| 231 | texture->UpdateState(context); |
| 232 | } |
| 233 | |
| 234 | ref_ptr<Texture> TextureManager::AllocateGlyphTexture() |
| 235 | { |
nothing calls this directly
no test coverage detected