Home | History | Annotate | Download | only in video

Lines Matching full:blit

42 /* The general purpose software blit routine */
72 /* Set up source and destination buffer pointers, and BLIT! */
77 /* Set up the blit information */
94 RunBlit = src->map->sw_data->blit;
96 /* Run the actual software blit */
107 /* Blit is done! */
232 /* Figure out which of many blit routines to set up on a surface */
243 /* Figure out if an accelerated hardware blit is possible */
293 /* Get the blit function index, based on surface mode */
303 /* Check for special "identity" case -- copy blit */
305 surface->map->sw_data->blit = SDL_BlitCopy;
309 surface->map->sw_data->blit = SDL_BlitCopyOverlap;
313 surface->map->sw_data->blit =
318 surface->map->sw_data->blit =
324 surface->map->sw_data->blit =
328 surface->map->sw_data->blit = NULL;
333 /* Make sure we have a blit function */
334 if ( surface->map->sw_data->blit == NULL ) {
336 SDL_SetError("Blit combination not supported");