///////////////////////////////////////////////////////////////////////////
| 63 | |
| 64 | //////////////////////////////////////////////////////////////////////////////// |
| 65 | void RichText::Line::draw(sf::RenderTarget& target, sf::RenderStates states) const |
| 66 | { |
| 67 | states.transform *= getTransform(); |
| 68 | |
| 69 | for (const sf::Text& text : m_texts) |
| 70 | target.draw(text, states); |
| 71 | } |
| 72 | |
| 73 | //////////////////////////////////////////////////////////////////////////////// |
| 74 | void RichText::Line::updateGeometry() const |
no outgoing calls
no test coverage detected