comparison src/video/SDL_pixels_c.h @ 2967:e4a469d6ddab

Implemented SDL_SetWindowIcon(), with translucent icon support under X11.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 02 Jan 2009 17:39:48 +0000
parents 99210400e8b9
children 502adab079a4
comparison
equal deleted inserted replaced
2966:c1e3621ba959 2967:e4a469d6ddab
27 27
28 /* Pixel format functions */ 28 /* Pixel format functions */
29 extern SDL_PixelFormat *SDL_AllocFormat(int bpp, 29 extern SDL_PixelFormat *SDL_AllocFormat(int bpp,
30 Uint32 Rmask, Uint32 Gmask, 30 Uint32 Rmask, Uint32 Gmask,
31 Uint32 Bmask, Uint32 Amask); 31 Uint32 Bmask, Uint32 Amask);
32 extern SDL_PixelFormat *SDL_InitFormat(SDL_PixelFormat *format, int bpp,
33 Uint32 Rmask, Uint32 Gmask,
34 Uint32 Bmask, Uint32 Amask);
32 extern void SDL_FormatChanged(SDL_Surface * surface); 35 extern void SDL_FormatChanged(SDL_Surface * surface);
33 extern void SDL_FreeFormat(SDL_PixelFormat * format); 36 extern void SDL_FreeFormat(SDL_PixelFormat * format);
34 37
35 /* Blit mapping functions */ 38 /* Blit mapping functions */
36 extern SDL_BlitMap *SDL_AllocBlitMap(void); 39 extern SDL_BlitMap *SDL_AllocBlitMap(void);