| 22 | |
| 23 | template <typename ParamsType> |
| 24 | void Render(ref_ptr<dp::GraphicsContext> context, ref_ptr<gpu::ProgramManager> mng, ParamsType const & params, |
| 25 | dp::IndicesRange const & range) |
| 26 | { |
| 27 | Apply(context, mng, params); |
| 28 | m_buffer->RenderRange(context, m_state.GetDrawAsLine(), range); |
| 29 | } |
| 30 | |
| 31 | template <typename ParamsType> |
| 32 | void Render(ref_ptr<dp::GraphicsContext> context, ref_ptr<gpu::ProgramManager> mng, ParamsType const & params) |
nothing calls this directly
no test coverage detected