| 409 | } |
| 410 | |
| 411 | void ImDrawList::_ClearFreeMemory() |
| 412 | { |
| 413 | CmdBuffer.clear(); |
| 414 | IdxBuffer.clear(); |
| 415 | VtxBuffer.clear(); |
| 416 | Flags = ImDrawListFlags_None; |
| 417 | _VtxCurrentIdx = 0; |
| 418 | _VtxWritePtr = NULL; |
| 419 | _IdxWritePtr = NULL; |
| 420 | _ClipRectStack.clear(); |
| 421 | _TextureIdStack.clear(); |
| 422 | _Path.clear(); |
| 423 | _Splitter.ClearFreeMemory(); |
| 424 | } |
| 425 | |
| 426 | ImDrawList* ImDrawList::CloneOutput() const |
| 427 | { |
no test coverage detected