Home | History | Annotate | Download | only in video

Lines Matching refs:info

74 		SDL_BlitInfo info;
78 info.s_pixels = (Uint8 *)src->pixels +
81 info.s_width = srcrect->w;
82 info.s_height = srcrect->h;
83 info.s_skip=src->pitch-info.s_width*src->format->BytesPerPixel;
84 info.d_pixels = (Uint8 *)dst->pixels +
87 info.d_width = dstrect->w;
88 info.d_height = dstrect->h;
89 info.d_skip=dst->pitch-info.d_width*dst->format->BytesPerPixel;
90 info.aux_data = src->map->sw_data->aux_data;
91 info.src = src->format;
92 info.table = src->map->table;
93 info.dst = dst->format;
97 RunBlit(&info);
155 static void SDL_BlitCopy(SDL_BlitInfo *info)
161 w = info->d_width*info->dst->BytesPerPixel;
162 h = info->d_height;
163 src = info->s_pixels;
164 dst = info->d_pixels;
165 srcskip = w+info->s_skip;
166 dstskip = w+info->d_skip;
203 static void SDL_BlitCopyOverlap(SDL_BlitInfo *info)
209 w = info->d_width*info->dst->BytesPerPixel;
210 h = info->d_height;
211 src = info->s_pixels;
212 dst = info->d_pixels;
213 srcskip = w+info->s_skip;
214 dstskip = w+info->d_skip;
251 hw_blit_ok = current_video->info.blit_hw;
256 hw_blit_ok = current_video->info.blit_hw_CC;
259 hw_blit_ok = current_video->info.blit_hw_A;
264 hw_blit_ok = current_video->info.blit_sw;
269 hw_blit_ok = current_video->info.blit_sw_CC;
272 hw_blit_ok = current_video->info.blit_sw_A;
286 if ( current_video->info.blit_hw_A ) {