| 3960 | } |
| 3961 | |
| 3962 | bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags) |
| 3963 | { |
| 3964 | return InputScalarN(label, ImGuiDataType_S32, v, 4, NULL, NULL, "%d", flags); |
| 3965 | } |
| 3966 | |
| 3967 | bool ImGui::InputDouble(const char* label, double* v, double step, double step_fast, const char* format, ImGuiInputTextFlags flags) |
| 3968 | { |
nothing calls this directly
no outgoing calls
no test coverage detected