AA branch: more inline.

This commit is contained in:
ocornut
2015-06-30 12:55:14 -06:00
parent 077285ae57
commit c3040dee35
2 changed files with 9 additions and 19 deletions

View File

@ -9202,16 +9202,6 @@ void ImDrawList::AddConvexPolyFilled(const ImVec2* points, const int points_coun
}
}
void ImDrawList::PathClear()
{
path.resize(0);
}
void ImDrawList::PathLineTo(const ImVec2& p)
{
path.push_back(p);
}
void ImDrawList::PathArcToFast(const ImVec2& centre, float radius, int amin, int amax)
{
static ImVec2 circle_vtx[12];