| 392 | } |
| 393 | |
| 394 | void Canvas::Display() const { |
| 395 | if( !m_render_texture ) { |
| 396 | return; |
| 397 | } |
| 398 | |
| 399 | m_render_texture->display(); |
| 400 | |
| 401 | Redraw(); |
| 402 | } |
| 403 | |
| 404 | void Canvas::Draw( const sf::Drawable& drawable, const sf::RenderStates& states ) { |
| 405 | m_render_texture->draw( drawable, states ); |
nothing calls this directly
no outgoing calls
no test coverage detected