| 230 | } |
| 231 | |
| 232 | static uint32_t TreeNodeFlags(Slice* flags, int count) { |
| 233 | uint32_t result = 0; |
| 234 | for (int i = 0; i < count; i++) { |
| 235 | result |= getTreeNodeFlag(flags[i]); |
| 236 | } |
| 237 | return result; |
| 238 | } |
| 239 | |
| 240 | static ImGuiSelectableFlags_ getSelectableFlag(String flag) { |
| 241 | switch (Switch::hash(flag)) { |
no test coverage detected