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