| 90 | } |
| 91 | |
| 92 | static uint32_t SliderFlags(Slice* flags, int count) { |
| 93 | uint32_t result = 0; |
| 94 | for (int i = 0; i < count; i++) { |
| 95 | result |= getSliderFlag(flags[i]); |
| 96 | } |
| 97 | return result; |
| 98 | } |
| 99 | |
| 100 | static ImGuiWindowFlags_ getWindowFlag(String style) { |
| 101 | switch (Switch::hash(style)) { |
no test coverage detected