| 2857 | } |
| 2858 | |
| 2859 | bool ImGui::DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 2860 | { |
| 2861 | return DragScalarN(label, ImGuiDataType_Float, v, 4, v_speed, &v_min, &v_max, format, flags); |
| 2862 | } |
| 2863 | |
| 2864 | // NB: You likely want to specify the ImGuiSliderFlags_AlwaysClamp when using this. |
| 2865 | bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) |
nothing calls this directly
no outgoing calls
no test coverage detected