| 3177 | } |
| 3178 | |
| 3179 | bool ImGui::VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) |
| 3180 | { |
| 3181 | return VSliderScalar(label, size, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); |
| 3182 | } |
| 3183 | |
| 3184 | bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) |
| 3185 | { |
nothing calls this directly
no outgoing calls
no test coverage detected