Home
last modified time | relevance | path

Searched refs:plot_type (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_widgets.cpp5249 void ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, i… in PlotEx() argument
5294 …int res_w = ImMin((int)frame_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5295 int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); in PlotEx()
5307 if (plot_type == ImGuiPlotType_Lines) in PlotEx()
5309 else if (plot_type == ImGuiPlotType_Histogram) in PlotEx()
5322 …const ImU32 col_base = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLines : ImGui… in PlotEx()
5323 …const ImU32 col_hovered = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLinesHover… in PlotEx()
5335 …ImVec2 pos1 = ImLerp(inner_bb.Min, inner_bb.Max, (plot_type == ImGuiPlotType_Lines) ? tp1 : ImVec2… in PlotEx()
5336 if (plot_type == ImGuiPlotType_Lines) in PlotEx()
5340 else if (plot_type == ImGuiPlotType_Histogram) in PlotEx()
Dimgui_internal.h1497 …IMGUI_API void PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(…