comparison src/video/x11/SDL_x11gamma.h @ 3500:4b594623401b

Work in progress on multi-display support: * Added display parameter to many internal functions so video modes can be set on displays that aren't the public current one. * The fullscreen mode is associated with fullscreen windows - not displays, so different windows more naturally have a mode associated with them based on their width and height. It's no longer necessary to specify a fullscreen mode, a default one will be picked automatically for fullscreen windows.
author Sam Lantinga <slouken@libsdl.org>
date Tue, 01 Dec 2009 05:57:15 +0000
parents a6694a812119
children f7b03b6838cb
comparison
equal deleted inserted replaced
3499:4cf8a1423d57 3500:4b594623401b
28 VisualID vid); 28 VisualID vid);
29 extern void X11_TrackColormap(Display * display, int scrNum, 29 extern void X11_TrackColormap(Display * display, int scrNum,
30 Colormap colormap, 30 Colormap colormap,
31 Visual * visual, XColor * ramp); 31 Visual * visual, XColor * ramp);
32 32
33 extern int X11_SetDisplayGammaRamp(_THIS, Uint16 * ramp); 33 extern int X11_SetDisplayGammaRamp(_THIS, SDL_VideoDisplay * display, Uint16 * ramp);
34 extern int X11_GetDisplayGammaRamp(_THIS, Uint16 * ramp); 34 extern int X11_GetDisplayGammaRamp(_THIS, SDL_VideoDisplay * display, Uint16 * ramp);
35 35
36 #endif 36 #endif