| 1481 | } |
| 1482 | |
| 1483 | void ImDrawList::AddLineH(float min_x, float max_x, float y, ImU32 col, float thickness) |
| 1484 | { |
| 1485 | if ((col & IM_COL32_A_MASK) == 0) |
| 1486 | return; |
| 1487 | PathLineTo(ImVec2(min_x + 0.5f, y + 0.5f)); // Same as AddLine() above. |
| 1488 | PathLineTo(ImVec2(max_x + 0.5f, y + 0.5f)); |
| 1489 | PathStroke(col, thickness); |
| 1490 | } |
| 1491 | |
| 1492 | void ImDrawList::AddLineV(float x, float min_y, float max_y, ImU32 col, float thickness) |
| 1493 | { |
no test coverage detected