| 132 | } |
| 133 | |
| 134 | void ShapeRenderer::AddShape(dp::RenderState const & state, drape_ptr<dp::RenderBucket> && bucket) |
| 135 | { |
| 136 | m_shapes.emplace_back(ShapeControl()); |
| 137 | m_shapes.back().AddShape(state, std::move(bucket)); |
| 138 | } |
| 139 | |
| 140 | void ShapeRenderer::AddShapeControl(ShapeControl && control) |
| 141 | { |
nothing calls this directly
no test coverage detected