| 462 | //------------------------------------------------------------------------ |
| 463 | template<class Clip> |
| 464 | AGG_INLINE bool rasterizer_scanline_aa<Clip>::rewind_scanlines() |
| 465 | { |
| 466 | if(m_auto_close) close_polygon(); |
| 467 | m_outline.sort_cells(); |
| 468 | if(m_outline.total_cells() == 0) |
| 469 | { |
| 470 | return false; |
| 471 | } |
| 472 | m_scan_y = m_outline.min_y(); |
| 473 | return true; |
| 474 | } |
| 475 | |
| 476 | |
| 477 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected