| 763 | } |
| 764 | |
| 765 | bool InputFloat(const char* label, float* v, float step, float step_fast, const char* format, Slice* flags, int flagCount) { |
| 766 | return ImGui::InputFloat(label, v, step, step_fast, format, InputTextFlags(flags, flagCount)); |
| 767 | } |
| 768 | |
| 769 | bool InputFloat2(const char* label, float* v1, float* v2, const char* format, Slice* flags, int flagCount) { |
| 770 | float floats[2] = {*v1, *v2}; |
no test coverage detected