| 3950 | } |
| 3951 | |
| 3952 | bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags) |
| 3953 | { |
| 3954 | return InputScalarN(label, ImGuiDataType_S32, v, 2, NULL, NULL, "%d", flags); |
| 3955 | } |
| 3956 | |
| 3957 | bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) |
| 3958 | { |
nothing calls this directly
no outgoing calls
no test coverage detected