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

Method DragInt2

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

Source from the content-addressed store, hash-verified

2514}
2515
2516bool ImGui::DragInt2(const char* label, int v[2], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
2517{
2518 return DragScalarN(label, ImGuiDataType_S32, v, 2, v_speed, &v_min, &v_max, format, flags);
2519}
2520
2521bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
2522{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected