| 3908 | } |
| 3909 | |
| 3910 | bool ImGui::InputFloat2(const char* label, float v[2], const char* format, ImGuiInputTextFlags flags) |
| 3911 | { |
| 3912 | return InputScalarN(label, ImGuiDataType_Float, v, 2, NULL, NULL, format, flags); |
| 3913 | } |
| 3914 | |
| 3915 | bool ImGui::InputFloat3(const char* label, float v[3], const char* format, ImGuiInputTextFlags flags) |
| 3916 | { |
nothing calls this directly
no outgoing calls
no test coverage detected