Searched refs:PathArcTo (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 953 void ImDrawList::PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se… in PathArcTo() function in ImDrawList 1151 PathArcTo(centre, radius-0.5f, 0.0f, a_max, num_segments - 1); in AddCircle() 1162 PathArcTo(centre, radius, 0.0f, a_max, num_segments - 1); in AddCircleFilled() 3028 …draw_list->PathArcTo(ImVec2(x0, p1.y - rounding), rounding, IM_PI - arc0_e, IM_PI - arc0_b, 3); //… in RenderRectFilledRangeH() 3029 …draw_list->PathArcTo(ImVec2(x0, p0.y + rounding), rounding, IM_PI + arc0_b, IM_PI + arc0_e, 3); //… in RenderRectFilledRangeH() 3048 draw_list->PathArcTo(ImVec2(x1, p0.y + rounding), rounding, -arc1_e, -arc1_b, 3); // TR in RenderRectFilledRangeH() 3049 draw_list->PathArcTo(ImVec2(x1, p1.y - rounding), rounding, +arc1_b, +arc1_e, 3); // BR in RenderRectFilledRangeH()
|
D | imgui.h | 1855 …IMGUI_API void PathArcTo(const ImVec2& centre, float radius, float a_min, float a_max, int num_se…
|
D | imgui.cpp | 4833 …window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.CornerPosN1) + ImVec2(0.5f, 0.5… in RenderOuterBorders() 4834 …window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.CornerPosN2) + ImVec2(0.5f, 0.5… in RenderOuterBorders()
|
D | imgui_widgets.cpp | 4325 … draw_list->PathArcTo(wheel_center, (wheel_r_inner + wheel_r_outer)*0.5f, a0, a1, segment_per_arc); in ColorPicker4()
|