Home | History | Annotate | Download | only in video

Lines Matching defs:dst

44 			SDL_Surface *dst, SDL_Rect *dstrect)
55 if ( SDL_MUSTLOCK(dst) ) {
56 if ( SDL_LockSurface(dst) < 0 ) {
84 info.d_pixels = (Uint8 *)dst->pixels +
85 (Uint16)dstrect->y*dst->pitch +
86 (Uint16)dstrect->x*dst->format->BytesPerPixel;
89 info.d_skip=dst->pitch-info.d_width*dst->format->BytesPerPixel;
93 info.dst = dst->format;
102 SDL_UnlockSurface(dst);
157 Uint8 *src, *dst;
161 w = info->d_width*info->dst->BytesPerPixel;
164 dst = info->d_pixels;
172 SDL_memcpySSE(dst, src, w);
174 dst += dstskip;
186 SDL_memcpyMMX(dst, src, w);
188 dst += dstskip;
197 SDL_memcpy(dst, src, w);
199 dst += dstskip;
205 Uint8 *src, *dst;
209 w = info->d_width*info->dst->BytesPerPixel;
212 dst = info->d_pixels;
215 if ( dst < src ) {
217 SDL_memmove(dst, src, w);
219 dst += dstskip;
223 dst += ((h-1) * dstskip);
225 SDL_revcpy(dst, src, w);
227 dst -= dstskip;
250 if ( surface->map->dst->flags & SDL_HWSURFACE ) {
263 if ( surface->map->dst->flags & SDL_HWSURFACE ) {
278 video->CheckHWBlit(this, surface, surface->map->dst);
289 video->CheckHWBlit(this, surface, surface->map->dst);
308 if ( surface == surface->map->dst ) {