Home
last modified time | relevance | path

Searched refs:_Path (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/imgui/
Dimgui.h1813 ImVector<ImVec2> _Path; // [Internal] current path building member
1850 inline void PathClear() { _Path.Size = 0; } in PathClear()
1851 …inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos)… in PathLineTo()
1852 …onst ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path.Data[_Path.Size-1], &pos,… in PathLineToMergeDuplicate()
1853 …l) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); _Path.Siz… in PathFillConvex()
1854 …l closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness);
Dimgui_draw.cpp370 _Path.resize(0); in Clear()
386 _Path.clear(); in ClearFreeMemory()
942 _Path.push_back(centre); in PathArcToFast()
945 _Path.reserve(_Path.Size + (a_max_of_12 - a_min_of_12 + 1)); in PathArcToFast()
949 _Path.push_back(ImVec2(centre.x + c.x * radius, centre.y + c.y * radius)); in PathArcToFast()
957 _Path.push_back(centre); in PathArcTo()
963 _Path.reserve(_Path.Size + (num_segments + 1)); in PathArcTo()
967 _Path.push_back(ImVec2(centre.x + ImCos(a) * radius, centre.y + ImSin(a) * radius)); in PathArcTo()
999 ImVec2 p1 = _Path.back(); in PathBezierCurveTo()
1003 …PathBezierToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, _Data->CurveTessella… in PathBezierCurveTo()
[all …]
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui.h1805 ImVector<ImVec2> _Path; // [Internal] current path building member
1842 inline void PathClear() { _Path.Size = 0; } in PathClear()
1843 …inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos)… in PathLineTo()
1844 …onst ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path.Data[_Path.Size-1], &pos,… in PathLineToMergeDuplicate()
1845 …l) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); _Path.Siz… in PathFillConvex()
1846 …l closed, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, closed, thickness);
Dimgui_draw.cpp368 _Path.resize(0); in Clear()
384 _Path.clear(); in ClearFreeMemory()
940 _Path.push_back(centre); in PathArcToFast()
943 _Path.reserve(_Path.Size + (a_max_of_12 - a_min_of_12 + 1)); in PathArcToFast()
947 _Path.push_back(ImVec2(centre.x + c.x * radius, centre.y + c.y * radius)); in PathArcToFast()
955 _Path.push_back(centre); in PathArcTo()
958 _Path.reserve(_Path.Size + (num_segments + 1)); in PathArcTo()
962 _Path.push_back(ImVec2(centre.x + ImCos(a) * radius, centre.y + ImSin(a) * radius)); in PathArcTo()
994 ImVec2 p1 = _Path.back(); in PathBezierCurveTo()
998 …PathBezierToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, _Data->CurveTessella… in PathBezierCurveTo()
[all …]
Dimgui_widgets.cpp6482 draw_list->AddConvexPolyFilled(draw_list->_Path.Data, draw_list->_Path.Size, col); in TabItemBackground()
6484 …draw_list->AddPolyline(draw_list->_Path.Data, draw_list->_Path.Size, GetColorU32(ImGuiCol_Border),… in TabItemBackground()
/third_party/skia/third_party/externals/imgui/
Dimgui_draw.cpp420 _Path.resize(0); in _ResetForNewFrame()
437 _Path.clear(); in _ClearFreeMemory()
1057 _Path.push_back(center); in _PathArcToFastEx()
1090 _Path.resize(_Path.Size + samples); in _PathArcToFastEx()
1091 ImVec2* out_ptr = _Path.Data + (_Path.Size - samples); in _PathArcToFastEx()
1142 IM_ASSERT_PARANOID(_Path.Data + _Path.Size == out_ptr); in _PathArcToFastEx()
1149 _Path.push_back(center); in _PathArcToN()
1155 _Path.reserve(_Path.Size + (num_segments + 1)); in _PathArcToN()
1159 _Path.push_back(ImVec2(center.x + ImCos(a) * radius, center.y + ImSin(a) * radius)); in _PathArcToN()
1168 _Path.push_back(center); in PathArcToFast()
[all …]
Dimgui.h2408 ImVector<ImVec2> _Path; // [Internal] current path building member
2459 inline void PathClear() { _Path.Size = 0; } in PathClear()
2460 …inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos)… in PathLineTo()
2461 …nst ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path.Data[_Path.Size - 1], &pos… in PathLineToMergeDuplicate()
2462 …l) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); _Path.Siz… in PathFillConvex()
2463 … flags = 0, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, flags, thickness);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVirtualFileSystem.cpp2057 const Twine &_Path, in VFSFromYamlDirIterImpl() argument
2061 : Dir(_Path.str()), Current(Begin), End(End), in VFSFromYamlDirIterImpl()