Home | History | Annotate | Download | only in gem

Lines Matching refs:icon

43 void GEM_SetCaption(_THIS, const char *title, const char *icon)
50 if (icon) {
51 GEM_icon_name = icon;
56 void GEM_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)
67 if (icon == NULL) {
71 /* Convert icon to the screen format */
72 sicon = SDL_CreateRGBSurface(SDL_SWSURFACE, icon->w, icon->h,
80 bounds.w = icon->w;
81 bounds.h = icon->h;
82 if ( SDL_LowerBlit(icon, &bounds, sicon, &bounds) < 0 ) {