| 3942 | } |
| 3943 | |
| 3944 | bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) |
| 3945 | { |
| 3946 | return InputScalarN(label, ImGuiDataType_S32, v, 3, NULL, NULL, "%d", flags); |
| 3947 | } |
| 3948 | |
| 3949 | bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags) |
| 3950 | { |
nothing calls this directly
no outgoing calls
no test coverage detected