| 2455 | } |
| 2456 | |
| 2457 | bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 2458 | { |
| 2459 | return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, flags); |
| 2460 | } |
| 2461 | |
| 2462 | bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 2463 | { |
nothing calls this directly
no outgoing calls
no test coverage detected