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

Method DragFloat

include/imgui/imgui_widgets.cpp:2844–2847  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2842}
2843
2844bool 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
2849bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags)
2850{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected