| 3918 | } |
| 3919 | |
| 3920 | bool ImGui::InputFloat4(const char* label, float v[4], const char* format, ImGuiInputTextFlags flags) |
| 3921 | { |
| 3922 | return InputScalarN(label, ImGuiDataType_Float, v, 4, NULL, NULL, format, flags); |
| 3923 | } |
| 3924 | |
| 3925 | bool ImGui::InputInt(const char* label, int* v, int step, int step_fast, ImGuiInputTextFlags flags) |
| 3926 | { |
nothing calls this directly
no outgoing calls
no test coverage detected