Go to the source code of this file.
Functions | |
void | cell_init_draw_functions (struct cell_context *cell) |
void cell_init_draw_functions | ( | struct cell_context * | cell | ) |
Definition at line 184 of file cell_draw_arrays.c.
References cell_draw_arrays(), cell_draw_elements(), cell_draw_range_elements(), cell_set_edgeflags(), pipe_context::draw_arrays, pipe_context::draw_elements, pipe_context::draw_range_elements, cell_context::pipe, and pipe_context::set_edgeflags.
00185 { 00186 cell->pipe.draw_arrays = cell_draw_arrays; 00187 cell->pipe.draw_elements = cell_draw_elements; 00188 cell->pipe.draw_range_elements = cell_draw_range_elements; 00189 cell->pipe.set_edgeflags = cell_set_edgeflags; 00190 }