comparison src/video/photon/SDL_ph_modes_c.h @ 1662:782fd950bd46 SDL-1.3

Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API. WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid. The code is now run through a consistent indent format: indent -i4 -nut -nsc -br -ce The headers are being converted to automatically generate doxygen documentation.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 28 May 2006 13:04:16 +0000
parents d910939febfa
children 4da1ee79c9af
comparison
equal deleted inserted replaced
1661:281d3f4870e5 1662:782fd950bd46
29 #define PH_MAX_VIDEOMODES 127 29 #define PH_MAX_VIDEOMODES 127
30 30
31 #define PH_ENTER_DIRECTMODE 0 31 #define PH_ENTER_DIRECTMODE 0
32 #define PH_IGNORE_DIRECTMODE 1 32 #define PH_IGNORE_DIRECTMODE 1
33 33
34 extern SDL_Rect **ph_ListModes(_THIS,SDL_PixelFormat *format, Uint32 flags); 34 extern SDL_Rect **ph_ListModes (_THIS, SDL_PixelFormat * format,
35 extern void ph_FreeVideoModes(_THIS); 35 Uint32 flags);
36 extern int ph_ResizeFullScreen(_THIS); 36 extern void ph_FreeVideoModes (_THIS);
37 extern int ph_EnterFullScreen(_THIS, SDL_Surface* screen, int fmode); 37 extern int ph_ResizeFullScreen (_THIS);
38 extern int ph_LeaveFullScreen(_THIS); 38 extern int ph_EnterFullScreen (_THIS, SDL_Surface * screen, int fmode);
39 extern int ph_GetVideoMode(int width, int height, int bpp); 39 extern int ph_LeaveFullScreen (_THIS);
40 extern int get_mode_any_format(int width, int height, int bpp); 40 extern int ph_GetVideoMode (int width, int height, int bpp);
41 extern int ph_ToggleFullScreen(_THIS, int on); 41 extern int get_mode_any_format (int width, int height, int bpp);
42 extern int ph_ToggleFullScreen (_THIS, int on);
42 43
43 #endif /* __SDL_PH_MODES_H__ */ 44 #endif /* __SDL_PH_MODES_H__ */
45 /* vi: set ts=4 sw=4 expandtab: */