| 618 | //------------------------------------------------------------------------ |
| 619 | template<class Clip> |
| 620 | AGG_INLINE bool rasterizer_compound_aa<Clip>::navigate_scanline(int y) |
| 621 | { |
| 622 | m_outline.sort_cells(); |
| 623 | if(m_outline.total_cells() == 0) |
| 624 | { |
| 625 | return false; |
| 626 | } |
| 627 | if(m_max_style < m_min_style) |
| 628 | { |
| 629 | return false; |
| 630 | } |
| 631 | if(y < m_outline.min_y() || y > m_outline.max_y()) |
| 632 | { |
| 633 | return false; |
| 634 | } |
| 635 | m_scan_y = y; |
| 636 | m_styles.allocate(m_max_style - m_min_style + 2, 128); |
| 637 | allocate_master_alpha(); |
| 638 | return true; |
| 639 | } |
| 640 | |
| 641 | //------------------------------------------------------------------------ |
| 642 | template<class Clip> |
nothing calls this directly
no test coverage detected