| 167 | } |
| 168 | |
| 169 | std::unique_ptr<RenderQueue> Label::InvalidateImpl() const { |
| 170 | return Context::Get().GetEngine().CreateLabelDrawable( std::dynamic_pointer_cast<const Label>( shared_from_this() ) ); |
| 171 | } |
| 172 | |
| 173 | sf::Vector2f Label::CalculateRequisition() { |
| 174 | const std::string& font_name( Context::Get().GetEngine().GetProperty<std::string>( "FontName", shared_from_this() ) ); |
nothing calls this directly
no test coverage detected