| 156 | } |
| 157 | |
| 158 | void VertexArrayBuffer::Render(ref_ptr<GraphicsContext> context, bool drawAsLine) |
| 159 | { |
| 160 | RenderRange(context, drawAsLine, IndicesRange(0, GetIndexBuffer()->GetCurrentSize())); |
| 161 | } |
| 162 | |
| 163 | void VertexArrayBuffer::RenderRange(ref_ptr<GraphicsContext> context, bool drawAsLine, IndicesRange const & range) |
| 164 | { |
nothing calls this directly
no test coverage detected