///////////////////////////////////////////////////////
| 416 | |
| 417 | //////////////////////////////////////////////////////////// |
| 418 | void Font::setSmooth(bool smooth) |
| 419 | { |
| 420 | if (smooth != m_isSmooth) |
| 421 | { |
| 422 | m_isSmooth = smooth; |
| 423 | |
| 424 | for (auto& [key, page] : m_pages) |
| 425 | { |
| 426 | page.texture.setSmooth(m_isSmooth); |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | //////////////////////////////////////////////////////////// |
| 432 | bool Font::isSmooth() const |
no outgoing calls
no test coverage detected