MCPcopy Create free account
hub / github.com/Raais/ImStudio / VSliderFloat

Method VSliderFloat

src/third-party/imgui/imgui_widgets.cpp:3179–3182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3177}
3178
3179bool 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
3184bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags)
3185{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected