Home | History | Annotate | Download | only in skin

Lines Matching full:surface

216     SDL_Surface*     surface;
237 if (image->surface) {
238 SDL_FreeSurface(image->surface);
239 image->surface = NULL;
333 image->surface = sdl_surface_from_argb32( image->pixels, w, h );
334 if (image->surface == NULL) {
335 fprintf(stderr, "failed to create SDL surface for '%s' image\n", path);
495 SDL_LockSurface(parent->surface);
510 SDL_UnlockSurface(parent->surface);
521 node->surface = sdl_surface_from_argb32( node->pixels, node->w, node->h );
522 if (node->surface == NULL) {
651 image->surface = sdl_surface_from_argb32( image->pixels, image->w, image->h );
652 if (image->surface == NULL)
694 SDL_LockSurface( clone->surface );
696 SDL_UnlockSurface( clone->surface );
697 SDL_SetAlpha( clone->surface, SDL_SRCALPHA, 255 );
741 return image ? image->surface : NULL;