| 2842 | } |
| 2843 | |
| 2844 | bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 2845 | { |
| 2846 | return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, flags); |
| 2847 | } |
| 2848 | |
| 2849 | bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 2850 | { |
nothing calls this directly
no outgoing calls
no test coverage detected