MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / DragFloat

Function DragFloat

Source/GUI/ImGuiBinding.cpp:741–743  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739}
740
741bool DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* display_format, Slice* flags, int flagCount) {
742 return ImGui::DragFloat(label, v, v_speed, v_min, v_max, display_format, SliderFlags(flags, flagCount));
743}
744
745bool DragFloat2(const char* label, float* v1, float* v2, float v_speed, float v_min, float v_max, const char* display_format, Slice* flags, int flagCount) {
746 float floats[2] = {*v1, *v2};

Callers 1

Calls 4

SliderFlagsFunction · 0.85
popMethod · 0.65
pushMethod · 0.65
c_strMethod · 0.45

Tested by

no test coverage detected