Go to the source code of this file.
Functions | |
void | cell_init_state_functions (struct cell_context *cell) |
void cell_init_state_functions | ( | struct cell_context * | cell | ) |
Definition at line 347 of file cell_pipe_state.c.
References pipe_context::bind_blend_state, pipe_context::bind_depth_stencil_alpha_state, pipe_context::bind_rasterizer_state, pipe_context::bind_sampler_states, cell_bind_blend_state(), cell_bind_depth_stencil_alpha_state(), cell_bind_rasterizer_state(), cell_bind_sampler_states(), cell_create_blend_state(), cell_create_depth_stencil_alpha_state(), cell_create_rasterizer_state(), cell_create_sampler_state(), cell_delete_blend_state(), cell_delete_depth_stencil_alpha_state(), cell_delete_rasterizer_state(), cell_delete_sampler_state(), cell_set_blend_color(), cell_set_clip_state(), cell_set_framebuffer_state(), cell_set_polygon_stipple(), cell_set_sampler_textures(), cell_set_scissor_state(), cell_set_viewport_state(), pipe_context::create_blend_state, pipe_context::create_depth_stencil_alpha_state, pipe_context::create_rasterizer_state, pipe_context::create_sampler_state, pipe_context::delete_blend_state, pipe_context::delete_depth_stencil_alpha_state, pipe_context::delete_rasterizer_state, pipe_context::delete_sampler_state, cell_context::pipe, pipe_context::set_blend_color, pipe_context::set_clip_state, pipe_context::set_framebuffer_state, pipe_context::set_polygon_stipple, pipe_context::set_sampler_textures, pipe_context::set_scissor_state, and pipe_context::set_viewport_state.
00348 { 00349 cell->pipe.create_blend_state = cell_create_blend_state; 00350 cell->pipe.bind_blend_state = cell_bind_blend_state; 00351 cell->pipe.delete_blend_state = cell_delete_blend_state; 00352 00353 cell->pipe.create_sampler_state = cell_create_sampler_state; 00354 cell->pipe.bind_sampler_states = cell_bind_sampler_states; 00355 cell->pipe.delete_sampler_state = cell_delete_sampler_state; 00356 00357 cell->pipe.set_sampler_textures = cell_set_sampler_textures; 00358 00359 cell->pipe.create_depth_stencil_alpha_state = cell_create_depth_stencil_alpha_state; 00360 cell->pipe.bind_depth_stencil_alpha_state = cell_bind_depth_stencil_alpha_state; 00361 cell->pipe.delete_depth_stencil_alpha_state = cell_delete_depth_stencil_alpha_state; 00362 00363 cell->pipe.create_rasterizer_state = cell_create_rasterizer_state; 00364 cell->pipe.bind_rasterizer_state = cell_bind_rasterizer_state; 00365 cell->pipe.delete_rasterizer_state = cell_delete_rasterizer_state; 00366 00367 cell->pipe.set_blend_color = cell_set_blend_color; 00368 cell->pipe.set_clip_state = cell_set_clip_state; 00369 00370 cell->pipe.set_framebuffer_state = cell_set_framebuffer_state; 00371 00372 cell->pipe.set_polygon_stipple = cell_set_polygon_stipple; 00373 cell->pipe.set_scissor_state = cell_set_scissor_state; 00374 cell->pipe.set_viewport_state = cell_set_viewport_state; 00375 }