| 15 | namespace sfg { |
| 16 | |
| 17 | VertexArrayRenderer::VertexArrayRenderer() : |
| 18 | m_last_vertex_count( 0 ), |
| 19 | m_last_index_count( 0 ), |
| 20 | m_alpha_threshold( 0.f ), |
| 21 | m_dirty( true ), |
| 22 | m_cull( false ) { |
| 23 | } |
| 24 | |
| 25 | VertexArrayRenderer::Ptr VertexArrayRenderer::Create() { |
| 26 | return Ptr( new VertexArrayRenderer ); |
nothing calls this directly
no outgoing calls
no test coverage detected