| 868 | } |
| 869 | |
| 870 | bool ColorButton(const char* desc_id, Color col, Slice* flags, int flagCount, const Vec2& size) { |
| 871 | return ImGui::ColorButton(desc_id, col.toVec4(), ColorEditFlags(flags, flagCount), size); |
| 872 | } |
| 873 | |
| 874 | void Columns(int count, bool border) { |
| 875 | ImGui::Columns(count, nullptr, border); |
no test coverage detected