| 3472 | } |
| 3473 | |
| 3474 | bool 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 | |
| 3479 | bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) |
| 3480 | { |
nothing calls this directly
no outgoing calls
no test coverage detected