cell_type
cell_type** m_cells;
cell_type* m_curr_cell_ptr;
pod_vector<cell_type*> m_sorted_cells;
cell_type m_curr_cell;
cell_type m_style_cell;
cell_type** ptr = m_cells + m_num_blocks - 1;
pod_allocator<cell_type>::deallocate(*ptr, cell_block_size);
pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
AGG_INLINE void rasterizer_cells_aa<Cell>::style(const cell_type& style_cell)
cell_type** new_cells =
pod_allocator<cell_type*>::allocate(m_max_blocks +
memcpy(new_cells, m_cells, m_max_blocks * sizeof(cell_type*));
pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
pod_allocator<cell_type>::allocate(cell_block_size);
cell_type** block_ptr = m_cells;
cell_type* cell_ptr;
void style(const cell_type& style_cell);
const cell_type* const* scanline_cells(unsigned y) const