Lines Matching refs:dest
73 SDL_Rect dest,clip; in Draw() local
150 dest.x = x; in Draw()
151 dest.y = y; in Draw()
152 dest.w = texture_image->w; in Draw()
153 dest.h = texture_image->h; in Draw()
154 SDL_BlitSurface(texture_image, NULL, texture_target1, &dest); in Draw()
157 dest.x = x; in Draw()
158 dest.y = y; in Draw()
159 dest.w = texture_image->w; in Draw()
160 dest.h = texture_image->h; in Draw()
161 SDL_gfxBlitRGBA(texture_image, NULL, texture_target2, &dest); in Draw()
164 dest.x = width_half-256-10; in Draw()
165 dest.y = height_half-256/2; in Draw()
166 dest.w = 256; in Draw()
167 dest.h = 256; in Draw()
168 SDL_BlitSurface(texture_target1, NULL, screen, &dest); in Draw()
171 dest.x = width_half+10; in Draw()
172 dest.y = height_half-256/2; in Draw()
173 dest.w = 256; in Draw()
174 dest.h = 256; in Draw()
175 SDL_BlitSurface(texture_target2, NULL, screen, &dest); in Draw()