| 1589 | } |
| 1590 | |
| 1591 | void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) |
| 1592 | { |
| 1593 | if ((col & IM_COL32_A_MASK) == 0) |
| 1594 | return; |
| 1595 | |
| 1596 | PathLineTo(p1); |
| 1597 | PathLineTo(p2); |
| 1598 | PathLineTo(p3); |
| 1599 | PathFillConvex(col); |
| 1600 | } |
| 1601 | |
| 1602 | void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) |
| 1603 | { |
no outgoing calls
no test coverage detected