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

Function DragFloatRange2

Source/GUI/ImGuiBinding.cpp:813–815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

811}
812
813bool 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, Slice* flags, int flagCount) {
814 return ImGui::DragFloatRange2(label, v_current_min, v_current_max, v_speed, v_min, v_max, format, format_max, SliderFlags(flags, flagCount));
815}
816
817bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* format, const char* format_max, Slice* flags, int flagCount) {
818 return ImGui::DragIntRange2(label, v_current_min, v_current_max, v_speed, v_min, v_max, format, format_max, SliderFlags(flags, flagCount));

Callers 3

Demo_HeatmapsFunction · 0.85

Calls 4

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

Tested by

no test coverage detected