public bool rewind_scanlines()
 {
     m_Rasterizer.sort_cells();
     if (m_Rasterizer.total_cells() == 0)
     {
         return(false);
     }
     if (m_max_style < m_min_style)
     {
         return(false);
     }
     m_scan_y = m_Rasterizer.min_y();
     m_styles.Allocate((int)(m_max_style - m_min_style + 2), 128);
     allocate_master_alpha();
     return(true);
 }
Пример #2
0
 public int min_y()
 {
     return(m_outline.min_y());
 }