| 3937 | } |
| 3938 | |
| 3939 | bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags) |
| 3940 | { |
| 3941 | return InputScalarN(label, ImGuiDataType_S32, v, 2, NULL, NULL, "%d", flags); |
| 3942 | } |
| 3943 | |
| 3944 | bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) |
| 3945 | { |
nothing calls this directly
no outgoing calls
no test coverage detected