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