| 1825 | } |
| 1826 | |
| 1827 | static bool shouldExposeTextInputToTestEngine( ImGuiInputTextFlags flags ) |
| 1828 | { |
| 1829 | return !bool( flags & ( ImGuiInputTextFlags_ReadOnly | ImGuiInputTextFlags_Password ) ); |
| 1830 | } |
| 1831 | |
| 1832 | static bool basicTextInput( const char* label, std::string& str, ImGuiInputTextFlags flags, auto &&func ) |
| 1833 | { |
no outgoing calls
no test coverage detected