| 1465 | } |
| 1466 | |
| 1467 | void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) |
| 1468 | { |
| 1469 | if ((col & IM_COL32_A_MASK) == 0) |
| 1470 | return; |
| 1471 | |
| 1472 | PathLineTo(p1); |
| 1473 | PathLineTo(p2); |
| 1474 | PathLineTo(p3); |
| 1475 | PathFillConvex(col); |
| 1476 | } |
| 1477 | |
| 1478 | void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) |
| 1479 | { |
no outgoing calls
no test coverage detected