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

Function DragInt

Source/GUI/ImGuiBinding.cpp:753–755  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

751}
752
753bool DragInt(const char* label, int* v, float v_speed, int v_min, int v_max, const char* display_format, Slice* flags, int flagCount) {
754 return ImGui::DragInt(label, v, v_speed, v_min, v_max, display_format, SliderFlags(flags, flagCount));
755}
756
757bool DragInt2(const char* label, int* v1, int* v2, float v_speed, int v_min, int v_max, const char* display_format, Slice* flags, int flagCount) {
758 int ints[2] = {*v1, *v2};

Callers 10

imgui__drag_int_ret_optsFunction · 0.85
DragIntRange2Method · 0.85
ColorEdit4Method · 0.85
DemoWindowWidgetsBasicFunction · 0.85
DemoWindowLayoutFunction · 0.85
DemoWindowTablesFunction · 0.85
DemoWindowColumnsFunction · 0.85
showStatsMethod · 0.85

Calls 4

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

Tested by

no test coverage detected