comparison src/video/SDL_blit.c @ 697:8468fc0504f3

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sat, 30 Aug 2003 00:36:20 +0000
parents 5bb080d35049
children 22dbf364c017
comparison
equal deleted inserted replaced
696:8042c28039ad 697:8468fc0504f3
164 static void SDL_BlitCopy(SDL_BlitInfo *info) 164 static void SDL_BlitCopy(SDL_BlitInfo *info)
165 { 165 {
166 Uint8 *src, *dst; 166 Uint8 *src, *dst;
167 int w, h; 167 int w, h;
168 int srcskip, dstskip; 168 int srcskip, dstskip;
169 #if defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT)
169 Uint32 f; 170 Uint32 f;
171 #endif
170 172
171 w = info->d_width*info->dst->BytesPerPixel; 173 w = info->d_width*info->dst->BytesPerPixel;
172 h = info->d_height; 174 h = info->d_height;
173 src = info->s_pixels; 175 src = info->s_pixels;
174 dst = info->d_pixels; 176 dst = info->d_pixels;