MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / DragFloat4

Method DragFloat4

include/imgui/imgui_widgets.cpp:2859–2862  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2857}
2858
2859bool 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.
2865bool 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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected