Home
last modified time | relevance | path

Searched refs:PathLineTo (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_draw.cpp1028 PathLineTo(a); in PathRect()
1029 PathLineTo(ImVec2(b.x, a.y)); in PathRect()
1030 PathLineTo(b); in PathRect()
1031 PathLineTo(ImVec2(a.x, b.y)); in PathRect()
1050 PathLineTo(a + ImVec2(0.5f,0.5f)); in AddLine()
1051 PathLineTo(b + ImVec2(0.5f,0.5f)); in AddLine()
1103 PathLineTo(a); in AddQuad()
1104 PathLineTo(b); in AddQuad()
1105 PathLineTo(c); in AddQuad()
1106 PathLineTo(d); in AddQuad()
[all …]
Dimgui.cpp2452 window->DrawList->PathLineTo(ImVec2(bx - third, by - third)); in RenderCheckMark()
2453 window->DrawList->PathLineTo(ImVec2(bx, by)); in RenderCheckMark()
2454 window->DrawList->PathLineTo(ImVec2(bx + third*2, by - third*2)); in RenderCheckMark()
5279 …window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(window_border_… in Begin()
5280 …window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(grip_draw_size… in Begin()
Dimgui_widgets.cpp6565 draw_list->PathLineTo(ImVec2(bb.Min.x, y2)); in TabItemBackground()
6568 draw_list->PathLineTo(ImVec2(bb.Max.x, y2)); in TabItemBackground()
6572 draw_list->PathLineTo(ImVec2(bb.Min.x + 0.5f, y2)); in TabItemBackground()
6575 draw_list->PathLineTo(ImVec2(bb.Max.x - 0.5f, y2)); in TabItemBackground()
Dimgui.h1851 …inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos)… in PathLineTo() function