| 178 | } |
| 179 | |
| 180 | Patch::~Patch() |
| 181 | { |
| 182 | I_GraphicsApiContext* const api = Viewport::GetCurrentApiContext(); |
| 183 | |
| 184 | api->DeleteVertexArray(m_VAO); |
| 185 | api->DeleteBuffer(m_EBO); |
| 186 | api->DeleteBuffer(m_VBO); |
| 187 | api->DeleteBuffer(m_VBOInstance); |
| 188 | } |
| 189 | |
| 190 | |
| 191 | } // namespace render |
nothing calls this directly
no test coverage detected