Go to the source code of this file.
Functions | |
void | st_init_blit (struct st_context *st) |
void | st_destroy_blit (struct st_context *st) |
void | st_init_blit_functions (struct dd_function_table *functions) |
void st_destroy_blit | ( | struct st_context * | st | ) |
Definition at line 59 of file st_cb_blit.c.
References st_context::blit, and util_destroy_blit().
00060 { 00061 util_destroy_blit(st->blit); 00062 st->blit = NULL; 00063 }
void st_init_blit | ( | struct st_context * | st | ) |
Definition at line 52 of file st_cb_blit.c.
References st_context::blit, st_context::cso_context, st_context::pipe, and util_create_blit().
00053 { 00054 st->blit = util_create_blit(st->pipe, st->cso_context); 00055 }
void st_init_blit_functions | ( | struct dd_function_table * | functions | ) |
Definition at line 106 of file st_cb_blit.c.
References st_BlitFramebuffer().
00107 { 00108 #if FEATURE_EXT_framebuffer_blit 00109 functions->BlitFramebuffer = st_BlitFramebuffer; 00110 #endif 00111 }