Home | History | Annotate | Download | only in skin

Lines Matching refs:dst_surface

107                    SDL_Surface*  dst_surface,
120 SDL_LockSurface( dst_surface );
127 op.dst_pitch = dst_surface->pitch;
128 op.dst_line = dst_surface->pixels;
156 if (dst_surface->format->Rshift != 16 ||
157 dst_surface->format->Gshift != 8 ||
158 dst_surface->format->Bshift != 0)
160 uint32_t rshift = dst_surface->format->Rshift;
161 uint32_t gshift = dst_surface->format->Gshift;
162 uint32_t bshift = dst_surface->format->Bshift;
163 uint32_t ashift = dst_surface->format->Ashift;
164 uint32_t amask = dst_surface->format->Amask; // may be 0x00
181 SDL_UnlockSurface( dst_surface );
184 SDL_UpdateRects( dst_surface, 1, &op.rd );