| 588 | } |
| 589 | |
| 590 | bool InputTextMultiline(const char* label, Buffer* buffer, const Vec2& size, Slice* inputTextFlags, int flagCount) { |
| 591 | if (!buffer) return false; |
| 592 | return ImGui::InputTextMultiline(label, buffer->get(), buffer->size(), size, InputTextFlags(inputTextFlags, flagCount)); |
| 593 | } |
| 594 | |
| 595 | bool TreeNodeEx(const char* label, Slice* treeNodeFlags, int flagCount) { |
| 596 | return ImGui::TreeNodeEx(label, TreeNodeFlags(treeNodeFlags, flagCount)); |
no test coverage detected