MCPcopy Create free account
hub / github.com/Raais/ImStudio / DragFloat

Method DragFloat

src/third-party/imgui/imgui_widgets.cpp:2457–2460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2455}
2456
2457bool 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
2462bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags)
2463{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected