| 12 | |
| 13 | |
| 14 | DebugRenderer::~DebugRenderer() |
| 15 | { |
| 16 | I_GraphicsApiContext* const api = Viewport::GetCurrentApiContext(); |
| 17 | |
| 18 | api->DeleteVertexArray(m_VAO); |
| 19 | api->DeleteBuffer(m_VBO); |
| 20 | m_Lines.clear(); |
| 21 | m_MetaData.clear(); |
| 22 | } |
| 23 | |
| 24 | void DebugRenderer::Initialize() |
| 25 | { |
nothing calls this directly
no test coverage detected