--------------------------------- SpriteFont::d-tor Destroy the texture data if it was not loaded from the resource managegr
| 63 | // Destroy the texture data if it was not loaded from the resource managegr |
| 64 | // |
| 65 | SpriteFont::~SpriteFont() |
| 66 | { |
| 67 | if (m_TextureAsset == nullptr) |
| 68 | { |
| 69 | SafeDelete(m_pTexture); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | //--------------------------------- |
| 74 | // SpriteFont::GetMetric |
nothing calls this directly
no test coverage detected