Lines Matching refs:dst
124 void name(type *src, int src_w, type *dst, int dst_w) \
137 *dst++ = pixel; \
148 void copy_row3(Uint8 *src, int src_w, Uint8 *dst, int dst_w)
163 *dst++ = pixel[0];
164 *dst++ = pixel[1];
165 *dst++ = pixel[2];
174 SDL_Surface *dst, SDL_Rect *dstrect)
189 const int bpp = dst->format->BytesPerPixel;
191 if ( src->format->BitsPerPixel != dst->format->BitsPerPixel ) {
213 ((dstrect->x+dstrect->w) > dst->w) ||
214 ((dstrect->y+dstrect->h) > dst->h) ) {
221 full_dst.w = dst->w;
222 full_dst.h = dst->h;
228 if ( SDL_MUSTLOCK(dst) ) {
229 if ( SDL_LockSurface(dst) < 0 ) {
240 SDL_UnlockSurface(dst);
265 dstp = (Uint8 *)dst->pixels + (dst_row*dst->pitch)
327 SDL_UnlockSurface(dst);