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

Method DragInt3

include/imgui/imgui_widgets.cpp:2908–2911  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2906}
2907
2908bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
2909{
2910 return DragScalarN(label, ImGuiDataType_S32, v, 3, v_speed, &v_min, &v_max, format, flags);
2911}
2912
2913bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
2914{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected