| 2574 | |
| 2575 | inline ImDrawListSplitter() { memset(this, 0, sizeof(*this)); } |
| 2576 | inline ~ImDrawListSplitter() { ClearFreeMemory(); } |
| 2577 | inline void Clear() { _Current = 0; _Count = 1; } // Do not clear Channels[] so our allocations are reused next frame |
| 2578 | IMGUI_API void ClearFreeMemory(); |
| 2579 | IMGUI_API void Split(ImDrawList* draw_list, int count); |
nothing calls this directly
no test coverage detected