| 488 | } |
| 489 | |
| 490 | void TextureManager::GetColorRegion(Color const & color, ColorRegion & region) |
| 491 | { |
| 492 | CHECK(m_isInitialized, ()); |
| 493 | GetRegionBase(make_ref(m_colorTexture), region, ColorKey(color)); |
| 494 | } |
| 495 | |
| 496 | text::TextMetrics TextureManager::ShapeSingleTextLine( |
| 497 | float fontPixelHeight, std::string_view utf8, TGlyphsBuffer * glyphRegions, |
no test coverage detected