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

Method SliderInt

include/imgui/imgui_widgets.cpp:3474–3477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3472}
3473
3474bool ImGui::SliderInt(const char* label, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
3475{
3476 return SliderScalar(label, ImGuiDataType_S32, v, &v_min, &v_max, format, flags);
3477}
3478
3479bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
3480{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected