| 402 | } |
| 403 | |
| 404 | void Canvas::Draw( const sf::Drawable& drawable, const sf::RenderStates& states ) { |
| 405 | m_render_texture->draw( drawable, states ); |
| 406 | } |
| 407 | |
| 408 | void Canvas::Draw( const sf::Vertex* vertices, std::size_t vertex_count, sf::PrimitiveType type, const sf::RenderStates& states ) { |
| 409 | m_render_texture->draw( vertices, vertex_count, type, states ); |