| 404 | //------------------------------------------------------------------------ |
| 405 | template<class Clip> |
| 406 | void rasterizer_compound_aa<Clip>::add_vertex(double x, double y, unsigned cmd) |
| 407 | { |
| 408 | if(is_move_to(cmd)) |
| 409 | { |
| 410 | move_to_d(x, y); |
| 411 | } |
| 412 | else |
| 413 | if(is_vertex(cmd)) |
| 414 | { |
| 415 | line_to_d(x, y); |
| 416 | } |
| 417 | else |
| 418 | if(is_close(cmd)) |
| 419 | { |
| 420 | m_clipper.line_to(m_outline, m_start_x, m_start_y); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | //------------------------------------------------------------------------ |
| 425 | template<class Clip> |
nothing calls this directly
no test coverage detected