Symbol: cell_type
headers/libs/agg/agg_rasterizer_cells_aa.h
110
cell_type** m_cells;
headers/libs/agg/agg_rasterizer_cells_aa.h
111
cell_type* m_curr_cell_ptr;
headers/libs/agg/agg_rasterizer_cells_aa.h
112
pod_vector<cell_type*> m_sorted_cells;
headers/libs/agg/agg_rasterizer_cells_aa.h
114
cell_type m_curr_cell;
headers/libs/agg/agg_rasterizer_cells_aa.h
115
cell_type m_style_cell;
headers/libs/agg/agg_rasterizer_cells_aa.h
132
cell_type** ptr = m_cells + m_num_blocks - 1;
headers/libs/agg/agg_rasterizer_cells_aa.h
135
pod_allocator<cell_type>::deallocate(*ptr, cell_block_size);
headers/libs/agg/agg_rasterizer_cells_aa.h
138
pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
headers/libs/agg/agg_rasterizer_cells_aa.h
309
AGG_INLINE void rasterizer_cells_aa<Cell>::style(const cell_type& style_cell)
headers/libs/agg/agg_rasterizer_cells_aa.h
473
cell_type** new_cells =
headers/libs/agg/agg_rasterizer_cells_aa.h
474
pod_allocator<cell_type*>::allocate(m_max_blocks +
headers/libs/agg/agg_rasterizer_cells_aa.h
479
memcpy(new_cells, m_cells, m_max_blocks * sizeof(cell_type*));
headers/libs/agg/agg_rasterizer_cells_aa.h
480
pod_allocator<cell_type*>::deallocate(m_cells, m_max_blocks);
headers/libs/agg/agg_rasterizer_cells_aa.h
487
pod_allocator<cell_type>::allocate(cell_block_size);
headers/libs/agg/agg_rasterizer_cells_aa.h
656
cell_type** block_ptr = m_cells;
headers/libs/agg/agg_rasterizer_cells_aa.h
657
cell_type* cell_ptr;
headers/libs/agg/agg_rasterizer_cells_aa.h
69
void style(const cell_type& style_cell);
headers/libs/agg/agg_rasterizer_cells_aa.h
89
const cell_type* const* scanline_cells(unsigned y) const