| 601 | } |
| 602 | |
| 603 | bool CollapsingHeader(const char* label, Slice* treeNodeFlags, int flagCount) { |
| 604 | return ImGui::CollapsingHeader(label, TreeNodeFlags(treeNodeFlags, flagCount)); |
| 605 | } |
| 606 | |
| 607 | bool CollapsingHeader(const char* label, bool* p_open, Slice* treeNodeFlags, int flagCount) { |
| 608 | return ImGui::CollapsingHeader(label, p_open, TreeNodeFlags(treeNodeFlags, flagCount)); |
no test coverage detected