| 739 | } |
| 740 | |
| 741 | bool DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* display_format, Slice* flags, int flagCount) { |
| 742 | return ImGui::DragFloat(label, v, v_speed, v_min, v_max, display_format, SliderFlags(flags, flagCount)); |
| 743 | } |
| 744 | |
| 745 | bool DragFloat2(const char* label, float* v1, float* v2, float v_speed, float v_min, float v_max, const char* display_format, Slice* flags, int flagCount) { |
| 746 | float floats[2] = {*v1, *v2}; |
no test coverage detected