| 2519 | } |
| 2520 | |
| 2521 | bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) |
| 2522 | { |
| 2523 | return DragScalarN(label, ImGuiDataType_S32, v, 3, v_speed, &v_min, &v_max, format, flags); |
| 2524 | } |
| 2525 | |
| 2526 | bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) |
| 2527 | { |
nothing calls this directly
no outgoing calls
no test coverage detected