| 195 | } |
| 196 | |
| 197 | static uint32_t InputTextFlags(Slice* flags, int count) { |
| 198 | uint32_t result = 0; |
| 199 | for (int i = 0; i < count; i++) { |
| 200 | result |= getInputTextFlag(flags[i]); |
| 201 | } |
| 202 | return result; |
| 203 | } |
| 204 | |
| 205 | static ImGuiTreeNodeFlags_ getTreeNodeFlag(String flag) { |
| 206 | switch (Switch::hash(flag)) { |
no test coverage detected