| 3930 | } |
| 3931 | |
| 3932 | bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags) |
| 3933 | { |
| 3934 | return InputScalarN(label, ImGuiDataType_S32, v, 2, NULL, NULL, "%d", flags); |
| 3935 | } |
| 3936 | |
| 3937 | bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) |
| 3938 | { |
nothing calls this directly
no outgoing calls
no test coverage detected