slouken@0
|
1 |
/*
|
slouken@0
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@3697
|
3 |
Copyright (C) 1997-2010 Sam Lantinga
|
slouken@0
|
4 |
|
slouken@0
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1312
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@0
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1312
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@0
|
9 |
|
slouken@0
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@0
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@0
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1312
|
13 |
Lesser General Public License for more details.
|
slouken@0
|
14 |
|
slouken@1312
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1312
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1312
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@0
|
18 |
|
slouken@0
|
19 |
Sam Lantinga
|
slouken@252
|
20 |
slouken@libsdl.org
|
slouken@0
|
21 |
*/
|
slouken@1402
|
22 |
#include "SDL_config.h"
|
slouken@0
|
23 |
|
slouken@0
|
24 |
#ifndef _SDL_sysvideo_h
|
slouken@0
|
25 |
#define _SDL_sysvideo_h
|
slouken@0
|
26 |
|
slouken@0
|
27 |
#include "SDL_mouse.h"
|
slouken@2268
|
28 |
#include "SDL_keysym.h"
|
eligottlieb@4782
|
29 |
#include "SDL_shape.h"
|
slouken@0
|
30 |
|
slouken@0
|
31 |
/* The SDL video driver */
|
slouken@1895
|
32 |
|
slouken@1895
|
33 |
typedef struct SDL_Renderer SDL_Renderer;
|
slouken@1895
|
34 |
typedef struct SDL_RenderDriver SDL_RenderDriver;
|
eligottlieb@4782
|
35 |
typedef struct SDL_WindowShaper SDL_WindowShaper;
|
eligottlieb@4782
|
36 |
typedef struct SDL_ShapeDriver SDL_ShapeDriver;
|
slouken@1895
|
37 |
typedef struct SDL_VideoDisplay SDL_VideoDisplay;
|
slouken@0
|
38 |
typedef struct SDL_VideoDevice SDL_VideoDevice;
|
slouken@0
|
39 |
|
slouken@1895
|
40 |
/* Define the SDL texture structure */
|
slouken@2753
|
41 |
struct SDL_Texture
|
slouken@2753
|
42 |
{
|
slouken@3695
|
43 |
const void *magic;
|
slouken@2753
|
44 |
Uint32 format; /**< The pixel format of the texture */
|
slouken@2753
|
45 |
int access; /**< SDL_TextureAccess */
|
slouken@2753
|
46 |
int w; /**< The width of the texture */
|
slouken@2753
|
47 |
int h; /**< The height of the texture */
|
slouken@2753
|
48 |
int modMode; /**< The texture modulation mode */
|
slouken@3685
|
49 |
int blendMode; /**< The texture blend mode */
|
slouken@3685
|
50 |
int scaleMode; /**< The texture scale mode */
|
slouken@3685
|
51 |
Uint8 r, g, b, a; /**< Texture modulation values */
|
slouken@1895
|
52 |
|
slouken@2753
|
53 |
SDL_Renderer *renderer;
|
slouken@1895
|
54 |
|
slouken@3685
|
55 |
void *driverdata; /**< Driver specific texture representation */
|
slouken@1895
|
56 |
|
slouken@3685
|
57 |
SDL_Texture *prev;
|
slouken@2753
|
58 |
SDL_Texture *next;
|
slouken@1895
|
59 |
};
|
slouken@1895
|
60 |
|
slouken@1895
|
61 |
/* Define the SDL renderer structure */
|
slouken@2753
|
62 |
struct SDL_Renderer
|
slouken@2753
|
63 |
{
|
slouken@2753
|
64 |
int (*ActivateRenderer) (SDL_Renderer * renderer);
|
slouken@2753
|
65 |
int (*DisplayModeChanged) (SDL_Renderer * renderer);
|
slouken@2753
|
66 |
int (*CreateTexture) (SDL_Renderer * renderer, SDL_Texture * texture);
|
slouken@2753
|
67 |
int (*QueryTexturePixels) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
68 |
void **pixels, int *pitch);
|
slouken@2753
|
69 |
int (*SetTexturePalette) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
70 |
const SDL_Color * colors, int firstcolor,
|
slouken@2753
|
71 |
int ncolors);
|
slouken@2753
|
72 |
int (*GetTexturePalette) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
73 |
SDL_Color * colors, int firstcolor,
|
slouken@2753
|
74 |
int ncolors);
|
slouken@2753
|
75 |
int (*SetTextureColorMod) (SDL_Renderer * renderer,
|
slouken@2753
|
76 |
SDL_Texture * texture);
|
slouken@2753
|
77 |
int (*SetTextureAlphaMod) (SDL_Renderer * renderer,
|
slouken@2753
|
78 |
SDL_Texture * texture);
|
slouken@2753
|
79 |
int (*SetTextureBlendMode) (SDL_Renderer * renderer,
|
slouken@2753
|
80 |
SDL_Texture * texture);
|
slouken@2753
|
81 |
int (*SetTextureScaleMode) (SDL_Renderer * renderer,
|
slouken@2753
|
82 |
SDL_Texture * texture);
|
slouken@2753
|
83 |
int (*UpdateTexture) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
84 |
const SDL_Rect * rect, const void *pixels,
|
slouken@2753
|
85 |
int pitch);
|
slouken@2753
|
86 |
int (*LockTexture) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
87 |
const SDL_Rect * rect, int markDirty, void **pixels,
|
slouken@2753
|
88 |
int *pitch);
|
slouken@2753
|
89 |
void (*UnlockTexture) (SDL_Renderer * renderer, SDL_Texture * texture);
|
slouken@2753
|
90 |
void (*DirtyTexture) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
91 |
int numrects, const SDL_Rect * rects);
|
slouken@2884
|
92 |
int (*SetDrawColor) (SDL_Renderer * renderer);
|
slouken@2884
|
93 |
int (*SetDrawBlendMode) (SDL_Renderer * renderer);
|
slouken@3596
|
94 |
int (*RenderClear) (SDL_Renderer * renderer);
|
slouken@3596
|
95 |
int (*RenderDrawPoints) (SDL_Renderer * renderer, const SDL_Point * points,
|
slouken@3596
|
96 |
int count);
|
slouken@3596
|
97 |
int (*RenderDrawLines) (SDL_Renderer * renderer, const SDL_Point * points,
|
slouken@3596
|
98 |
int count);
|
slouken@3596
|
99 |
int (*RenderDrawRects) (SDL_Renderer * renderer, const SDL_Rect ** rects,
|
slouken@3596
|
100 |
int count);
|
slouken@3596
|
101 |
int (*RenderFillRects) (SDL_Renderer * renderer, const SDL_Rect ** rects,
|
slouken@3596
|
102 |
int count);
|
slouken@2753
|
103 |
int (*RenderCopy) (SDL_Renderer * renderer, SDL_Texture * texture,
|
slouken@2753
|
104 |
const SDL_Rect * srcrect, const SDL_Rect * dstrect);
|
slouken@3427
|
105 |
int (*RenderReadPixels) (SDL_Renderer * renderer, const SDL_Rect * rect,
|
slouken@3435
|
106 |
Uint32 format, void * pixels, int pitch);
|
slouken@3427
|
107 |
int (*RenderWritePixels) (SDL_Renderer * renderer, const SDL_Rect * rect,
|
slouken@3435
|
108 |
Uint32 format, const void * pixels, int pitch);
|
slouken@2753
|
109 |
void (*RenderPresent) (SDL_Renderer * renderer);
|
slouken@2753
|
110 |
void (*DestroyTexture) (SDL_Renderer * renderer, SDL_Texture * texture);
|
slouken@1895
|
111 |
|
slouken@2753
|
112 |
void (*DestroyRenderer) (SDL_Renderer * renderer);
|
slouken@1895
|
113 |
|
slouken@2753
|
114 |
/* The current renderer info */
|
slouken@2753
|
115 |
SDL_RendererInfo info;
|
slouken@1895
|
116 |
|
slouken@2753
|
117 |
/* The window associated with the renderer */
|
slouken@3685
|
118 |
SDL_Window *window;
|
slouken@3685
|
119 |
|
slouken@3685
|
120 |
/* The list of textures */
|
slouken@3685
|
121 |
SDL_Texture *textures;
|
slouken@1895
|
122 |
|
slouken@2884
|
123 |
Uint8 r, g, b, a; /**< Color for drawing operations values */
|
slouken@2884
|
124 |
int blendMode; /**< The drawing blend mode */
|
slouken@2884
|
125 |
|
slouken@2753
|
126 |
void *driverdata;
|
slouken@1895
|
127 |
};
|
slouken@1895
|
128 |
|
slouken@1895
|
129 |
/* Define the SDL render driver structure */
|
slouken@2753
|
130 |
struct SDL_RenderDriver
|
slouken@2753
|
131 |
{
|
slouken@2753
|
132 |
SDL_Renderer *(*CreateRenderer) (SDL_Window * window, Uint32 flags);
|
slouken@1895
|
133 |
|
slouken@2753
|
134 |
/* Info about the renderer capabilities */
|
slouken@2753
|
135 |
SDL_RendererInfo info;
|
slouken@1895
|
136 |
};
|
slouken@1895
|
137 |
|
eligottlieb@4782
|
138 |
/* Define the SDL window-shaper structure */
|
eligottlieb@4782
|
139 |
struct SDL_WindowShaper
|
eligottlieb@4782
|
140 |
{
|
eligottlieb@4782
|
141 |
/* The window associated with the shaper */
|
eligottlieb@4782
|
142 |
SDL_Window *window;
|
eligottlieb@4782
|
143 |
|
eligottlieb@4851
|
144 |
/* The user's specified coordinates for the window, for once we give it a shape. */
|
eligottlieb@4851
|
145 |
Uint32 userx,usery;
|
eligottlieb@4782
|
146 |
|
eligottlieb@4807
|
147 |
/* The parameters for shape calculation. */
|
eligottlieb@4807
|
148 |
SDL_WindowShapeMode mode;
|
eligottlieb@4782
|
149 |
|
eligottlieb@4782
|
150 |
/* Has this window been assigned a shape? */
|
eligottlieb@4782
|
151 |
SDL_bool hasshape;
|
eligottlieb@4782
|
152 |
|
eligottlieb@4782
|
153 |
void *driverdata;
|
eligottlieb@4782
|
154 |
};
|
eligottlieb@4782
|
155 |
|
eligottlieb@4782
|
156 |
/* Define the SDL shape driver structure */
|
eligottlieb@4782
|
157 |
struct SDL_ShapeDriver
|
eligottlieb@4782
|
158 |
{
|
eligottlieb@4782
|
159 |
SDL_WindowShaper *(*CreateShaper)(SDL_Window * window);
|
egottlieb@4849
|
160 |
int (*SetWindowShape)(SDL_WindowShaper *shaper,SDL_Surface *shape,SDL_WindowShapeMode *shape_mode);
|
eligottlieb@4782
|
161 |
int (*ResizeWindowShape)(SDL_Window *window);
|
eligottlieb@4782
|
162 |
};
|
eligottlieb@4782
|
163 |
|
slouken@1895
|
164 |
/* Define the SDL window structure, corresponding to toplevel windows */
|
slouken@2753
|
165 |
struct SDL_Window
|
slouken@2753
|
166 |
{
|
slouken@3695
|
167 |
const void *magic;
|
slouken@2753
|
168 |
Uint32 id;
|
slouken@2753
|
169 |
char *title;
|
slouken@2753
|
170 |
int x, y;
|
slouken@2753
|
171 |
int w, h;
|
slouken@2753
|
172 |
Uint32 flags;
|
slouken@1895
|
173 |
|
slouken@3685
|
174 |
SDL_VideoDisplay *display;
|
slouken@2753
|
175 |
SDL_Renderer *renderer;
|
slouken@1895
|
176 |
|
slouken@3500
|
177 |
SDL_DisplayMode fullscreen_mode;
|
eligottlieb@4782
|
178 |
|
eligottlieb@4782
|
179 |
SDL_WindowShaper *shaper;
|
slouken@3500
|
180 |
|
slouken@2753
|
181 |
void *userdata;
|
slouken@2753
|
182 |
void *driverdata;
|
slouken@3685
|
183 |
|
slouken@3685
|
184 |
SDL_Window *prev;
|
slouken@3685
|
185 |
SDL_Window *next;
|
slouken@1895
|
186 |
};
|
slouken@1895
|
187 |
#define FULLSCREEN_VISIBLE(W) \
|
slouken@1895
|
188 |
(((W)->flags & SDL_WINDOW_FULLSCREEN) && \
|
slouken@1895
|
189 |
((W)->flags & SDL_WINDOW_SHOWN) && \
|
slouken@1895
|
190 |
!((W)->flags & SDL_WINDOW_MINIMIZED))
|
slouken@1895
|
191 |
|
hfutrell@2742
|
192 |
/*
|
hfutrell@2742
|
193 |
* Define the SDL display structure This corresponds to physical monitors
|
hfutrell@2742
|
194 |
* attached to the system.
|
slouken@1895
|
195 |
*/
|
slouken@2753
|
196 |
struct SDL_VideoDisplay
|
slouken@2753
|
197 |
{
|
slouken@2753
|
198 |
int max_display_modes;
|
slouken@2753
|
199 |
int num_display_modes;
|
slouken@2753
|
200 |
SDL_DisplayMode *display_modes;
|
slouken@2753
|
201 |
SDL_DisplayMode desktop_mode;
|
slouken@2753
|
202 |
SDL_DisplayMode current_mode;
|
slouken@3502
|
203 |
SDL_bool updating_fullscreen;
|
slouken@2753
|
204 |
SDL_Palette *palette;
|
slouken@1895
|
205 |
|
slouken@2753
|
206 |
Uint16 *gamma;
|
slouken@2753
|
207 |
Uint16 *saved_gamma; /* (just offset into gamma) */
|
slouken@1895
|
208 |
|
slouken@2753
|
209 |
int num_render_drivers;
|
slouken@2753
|
210 |
SDL_RenderDriver *render_drivers;
|
slouken@1895
|
211 |
|
slouken@2753
|
212 |
SDL_Window *windows;
|
slouken@3517
|
213 |
SDL_Window *fullscreen_window;
|
slouken@1895
|
214 |
|
slouken@2753
|
215 |
SDL_Renderer *current_renderer;
|
slouken@1895
|
216 |
|
slouken@2753
|
217 |
SDL_VideoDevice *device;
|
slouken@1895
|
218 |
|
slouken@2753
|
219 |
void *driverdata;
|
slouken@1895
|
220 |
};
|
slouken@1895
|
221 |
|
slouken@0
|
222 |
/* Define the SDL video driver structure */
|
slouken@0
|
223 |
#define _THIS SDL_VideoDevice *_this
|
slouken@0
|
224 |
|
slouken@2753
|
225 |
struct SDL_VideoDevice
|
slouken@2753
|
226 |
{
|
slouken@2753
|
227 |
/* * * */
|
slouken@2753
|
228 |
/* The name of this video driver */
|
slouken@2753
|
229 |
const char *name;
|
slouken@0
|
230 |
|
slouken@2753
|
231 |
/* * * */
|
slouken@2753
|
232 |
/* Initialization/Query functions */
|
slouken@0
|
233 |
|
slouken@2753
|
234 |
/*
|
slouken@2753
|
235 |
* Initialize the native video subsystem, filling in the list of
|
slouken@2753
|
236 |
* displays for this driver, returning 0 or -1 if there's an error.
|
slouken@2753
|
237 |
*/
|
slouken@2753
|
238 |
int (*VideoInit) (_THIS);
|
slouken@0
|
239 |
|
slouken@2753
|
240 |
/*
|
slouken@2753
|
241 |
* Reverse the effects VideoInit() -- called if VideoInit() fails or
|
slouken@2753
|
242 |
* if the application is shutting down the video subsystem.
|
slouken@2753
|
243 |
*/
|
slouken@2753
|
244 |
void (*VideoQuit) (_THIS);
|
slouken@1913
|
245 |
|
slouken@2753
|
246 |
/* * * */
|
slouken@2753
|
247 |
/*
|
slouken@2753
|
248 |
* Display functions
|
slouken@2753
|
249 |
*/
|
slouken@0
|
250 |
|
slouken@2753
|
251 |
/*
|
slouken@3528
|
252 |
* Get the bounds of a display
|
slouken@3528
|
253 |
*/
|
slouken@3528
|
254 |
int (*GetDisplayBounds) (_THIS, SDL_VideoDisplay * display, SDL_Rect * rect);
|
slouken@3528
|
255 |
|
slouken@3528
|
256 |
/*
|
slouken@2753
|
257 |
* Get a list of the available display modes. e.g.
|
slouken@2753
|
258 |
* SDL_AddDisplayMode(_this->current_display, mode)
|
slouken@2753
|
259 |
*/
|
slouken@3500
|
260 |
void (*GetDisplayModes) (_THIS, SDL_VideoDisplay * display);
|
slouken@0
|
261 |
|
slouken@2753
|
262 |
/*
|
slouken@2753
|
263 |
* Setting the display mode is independent of creating windows, so
|
slouken@2753
|
264 |
* when the display mode is changed, all existing windows should have
|
slouken@2753
|
265 |
* their data updated accordingly, including the display surfaces
|
slouken@2753
|
266 |
* associated with them.
|
slouken@2753
|
267 |
*/
|
slouken@3500
|
268 |
int (*SetDisplayMode) (_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode);
|
slouken@0
|
269 |
|
slouken@2753
|
270 |
/* Set the color entries of the display palette */
|
slouken@3500
|
271 |
int (*SetDisplayPalette) (_THIS, SDL_VideoDisplay * display, SDL_Palette * palette);
|
slouken@0
|
272 |
|
slouken@2753
|
273 |
/* Get the color entries of the display palette */
|
slouken@3500
|
274 |
int (*GetDisplayPalette) (_THIS, SDL_VideoDisplay * display, SDL_Palette * palette);
|
slouken@0
|
275 |
|
slouken@2753
|
276 |
/* Set the gamma ramp */
|
slouken@3500
|
277 |
int (*SetDisplayGammaRamp) (_THIS, SDL_VideoDisplay * display, Uint16 * ramp);
|
slouken@0
|
278 |
|
slouken@2753
|
279 |
/* Get the gamma ramp */
|
slouken@3500
|
280 |
int (*GetDisplayGammaRamp) (_THIS, SDL_VideoDisplay * display, Uint16 * ramp);
|
slouken@0
|
281 |
|
slouken@2753
|
282 |
/* * * */
|
slouken@2753
|
283 |
/*
|
slouken@2753
|
284 |
* Window functions
|
slouken@2753
|
285 |
*/
|
slouken@2753
|
286 |
int (*CreateWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
287 |
int (*CreateWindowFrom) (_THIS, SDL_Window * window, const void *data);
|
slouken@2753
|
288 |
void (*SetWindowTitle) (_THIS, SDL_Window * window);
|
slouken@2967
|
289 |
void (*SetWindowIcon) (_THIS, SDL_Window * window, SDL_Surface * icon);
|
slouken@2753
|
290 |
void (*SetWindowPosition) (_THIS, SDL_Window * window);
|
slouken@2753
|
291 |
void (*SetWindowSize) (_THIS, SDL_Window * window);
|
slouken@2753
|
292 |
void (*ShowWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
293 |
void (*HideWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
294 |
void (*RaiseWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
295 |
void (*MaximizeWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
296 |
void (*MinimizeWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
297 |
void (*RestoreWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
298 |
void (*SetWindowGrab) (_THIS, SDL_Window * window);
|
slouken@2753
|
299 |
void (*DestroyWindow) (_THIS, SDL_Window * window);
|
eligottlieb@4782
|
300 |
|
eligottlieb@4782
|
301 |
/* * * */
|
eligottlieb@4782
|
302 |
/*
|
eligottlieb@4782
|
303 |
* Shaped-window functions
|
eligottlieb@4782
|
304 |
*/
|
eligottlieb@4782
|
305 |
SDL_ShapeDriver shape_driver;
|
slouken@0
|
306 |
|
slouken@2753
|
307 |
/* Get some platform dependent window information */
|
slouken@2753
|
308 |
SDL_bool(*GetWindowWMInfo) (_THIS, SDL_Window * window,
|
slouken@2753
|
309 |
struct SDL_SysWMinfo * info);
|
slouken@0
|
310 |
|
slouken@2753
|
311 |
/* * * */
|
slouken@2753
|
312 |
/*
|
slouken@2753
|
313 |
* OpenGL support
|
slouken@2753
|
314 |
*/
|
slouken@2753
|
315 |
int (*GL_LoadLibrary) (_THIS, const char *path);
|
slouken@2753
|
316 |
void *(*GL_GetProcAddress) (_THIS, const char *proc);
|
slouken@3057
|
317 |
void (*GL_UnloadLibrary) (_THIS);
|
slouken@2753
|
318 |
SDL_GLContext(*GL_CreateContext) (_THIS, SDL_Window * window);
|
slouken@2753
|
319 |
int (*GL_MakeCurrent) (_THIS, SDL_Window * window, SDL_GLContext context);
|
slouken@2753
|
320 |
int (*GL_SetSwapInterval) (_THIS, int interval);
|
slouken@2753
|
321 |
int (*GL_GetSwapInterval) (_THIS);
|
slouken@2753
|
322 |
void (*GL_SwapWindow) (_THIS, SDL_Window * window);
|
slouken@2753
|
323 |
void (*GL_DeleteContext) (_THIS, SDL_GLContext context);
|
slouken@0
|
324 |
|
slouken@2753
|
325 |
/* * * */
|
slouken@2753
|
326 |
/*
|
slouken@2753
|
327 |
* Event manager functions
|
slouken@2753
|
328 |
*/
|
slouken@2753
|
329 |
void (*PumpEvents) (_THIS);
|
slouken@0
|
330 |
|
slouken@3025
|
331 |
/* Suspend the screensaver */
|
slouken@3025
|
332 |
void (*SuspendScreenSaver) (_THIS);
|
slouken@3025
|
333 |
|
slouken@3280
|
334 |
/* Text input */
|
slouken@3280
|
335 |
void (*StartTextInput) (_THIS);
|
slouken@3280
|
336 |
void (*StopTextInput) (_THIS);
|
slouken@3280
|
337 |
void (*SetTextInputRect) (_THIS, SDL_Rect *rect);
|
slouken@3280
|
338 |
|
slouken@2753
|
339 |
/* * * */
|
slouken@2753
|
340 |
/* Data common to all drivers */
|
slouken@3025
|
341 |
SDL_bool suspend_screensaver;
|
slouken@2753
|
342 |
int num_displays;
|
slouken@2753
|
343 |
SDL_VideoDisplay *displays;
|
slouken@2753
|
344 |
int current_display;
|
slouken@3695
|
345 |
Uint8 window_magic;
|
slouken@3695
|
346 |
Uint8 texture_magic;
|
slouken@2753
|
347 |
Uint32 next_object_id;
|
slouken@0
|
348 |
|
slouken@2753
|
349 |
/* * * */
|
slouken@2753
|
350 |
/* Data used by the GL drivers */
|
slouken@2753
|
351 |
struct
|
slouken@2753
|
352 |
{
|
slouken@2753
|
353 |
int red_size;
|
slouken@2753
|
354 |
int green_size;
|
slouken@2753
|
355 |
int blue_size;
|
slouken@2753
|
356 |
int alpha_size;
|
slouken@2753
|
357 |
int depth_size;
|
slouken@2753
|
358 |
int buffer_size;
|
slouken@2753
|
359 |
int stencil_size;
|
slouken@2753
|
360 |
int double_buffer;
|
slouken@2753
|
361 |
int accum_red_size;
|
slouken@2753
|
362 |
int accum_green_size;
|
slouken@2753
|
363 |
int accum_blue_size;
|
slouken@2753
|
364 |
int accum_alpha_size;
|
slouken@2753
|
365 |
int stereo;
|
slouken@2753
|
366 |
int multisamplebuffers;
|
slouken@2753
|
367 |
int multisamplesamples;
|
slouken@2753
|
368 |
int accelerated;
|
slouken@3100
|
369 |
int major_version;
|
slouken@3100
|
370 |
int minor_version;
|
slouken@2753
|
371 |
int retained_backing;
|
slouken@2753
|
372 |
int driver_loaded;
|
slouken@2753
|
373 |
char driver_path[256];
|
slouken@2753
|
374 |
void *dll_handle;
|
slouken@2753
|
375 |
} gl_config;
|
slouken@0
|
376 |
|
slouken@2753
|
377 |
/* * * */
|
slouken@2753
|
378 |
/* Data private to this driver */
|
slouken@2753
|
379 |
void *driverdata;
|
slouken@2753
|
380 |
struct SDL_GLDriverData *gl_data;
|
slouken@0
|
381 |
|
slouken@3161
|
382 |
#if SDL_VIDEO_DRIVER_PANDORA
|
slouken@3161
|
383 |
struct SDL_PrivateGLESData *gles_data;
|
slouken@3161
|
384 |
#endif
|
slouken@3161
|
385 |
|
slouken@2753
|
386 |
/* * * */
|
slouken@2753
|
387 |
/* The function used to dispose of this structure */
|
slouken@2753
|
388 |
void (*free) (_THIS);
|
slouken@1895
|
389 |
};
|
slouken@0
|
390 |
|
slouken@2753
|
391 |
typedef struct VideoBootStrap
|
slouken@2753
|
392 |
{
|
slouken@2753
|
393 |
const char *name;
|
slouken@2753
|
394 |
const char *desc;
|
slouken@2753
|
395 |
int (*available) (void);
|
slouken@2753
|
396 |
SDL_VideoDevice *(*create) (int devindex);
|
slouken@2753
|
397 |
} VideoBootStrap;
|
slouken@0
|
398 |
|
slouken@1931
|
399 |
#if SDL_VIDEO_DRIVER_COCOA
|
slouken@1931
|
400 |
extern VideoBootStrap COCOA_bootstrap;
|
slouken@1361
|
401 |
#endif
|
slouken@1361
|
402 |
#if SDL_VIDEO_DRIVER_X11
|
slouken@0
|
403 |
extern VideoBootStrap X11_bootstrap;
|
slouken@0
|
404 |
#endif
|
slouken@1361
|
405 |
#if SDL_VIDEO_DRIVER_FBCON
|
slouken@0
|
406 |
extern VideoBootStrap FBCON_bootstrap;
|
slouken@0
|
407 |
#endif
|
slouken@1361
|
408 |
#if SDL_VIDEO_DRIVER_DIRECTFB
|
slouken@167
|
409 |
extern VideoBootStrap DirectFB_bootstrap;
|
slouken@167
|
410 |
#endif
|
slouken@3257
|
411 |
#if SDL_VIDEO_DRIVER_PS3
|
slouken@3257
|
412 |
extern VideoBootStrap PS3_bootstrap;
|
slouken@3257
|
413 |
#endif
|
slouken@1361
|
414 |
#if SDL_VIDEO_DRIVER_SVGALIB
|
slouken@0
|
415 |
extern VideoBootStrap SVGALIB_bootstrap;
|
slouken@0
|
416 |
#endif
|
slouken@1361
|
417 |
#if SDL_VIDEO_DRIVER_GAPI
|
slouken@1361
|
418 |
extern VideoBootStrap GAPI_bootstrap;
|
slouken@1361
|
419 |
#endif
|
slouken@1895
|
420 |
#if SDL_VIDEO_DRIVER_WIN32
|
slouken@1895
|
421 |
extern VideoBootStrap WIN32_bootstrap;
|
slouken@1361
|
422 |
#endif
|
slouken@1361
|
423 |
#if SDL_VIDEO_DRIVER_BWINDOW
|
slouken@1361
|
424 |
extern VideoBootStrap BWINDOW_bootstrap;
|
slouken@1361
|
425 |
#endif
|
slouken@1361
|
426 |
#if SDL_VIDEO_DRIVER_PHOTON
|
slouken@3083
|
427 |
extern VideoBootStrap photon_bootstrap;
|
slouken@3083
|
428 |
#endif
|
slouken@3083
|
429 |
#if SDL_VIDEO_DRIVER_QNXGF
|
slouken@3083
|
430 |
extern VideoBootStrap qnxgf_bootstrap;
|
slouken@1361
|
431 |
#endif
|
slouken@1361
|
432 |
#if SDL_VIDEO_DRIVER_EPOC
|
slouken@1361
|
433 |
extern VideoBootStrap EPOC_bootstrap;
|
slouken@1361
|
434 |
#endif
|
slouken@1361
|
435 |
#if SDL_VIDEO_DRIVER_RISCOS
|
slouken@1361
|
436 |
extern VideoBootStrap RISCOS_bootstrap;
|
slouken@1361
|
437 |
#endif
|
hfutrell@2742
|
438 |
#if SDL_VIDEO_DRIVER_UIKIT
|
hfutrell@2742
|
439 |
extern VideoBootStrap UIKIT_bootstrap;
|
hfutrell@2742
|
440 |
#endif
|
slouken@1361
|
441 |
#if SDL_VIDEO_DRIVER_DUMMY
|
slouken@173
|
442 |
extern VideoBootStrap DUMMY_bootstrap;
|
slouken@173
|
443 |
#endif
|
slouken@2735
|
444 |
#if SDL_VIDEO_DRIVER_NDS
|
slouken@2735
|
445 |
extern VideoBootStrap NDS_bootstrap;
|
slouken@2735
|
446 |
#endif
|
slouken@3161
|
447 |
#if SDL_VIDEO_DRIVER_PANDORA
|
slouken@3161
|
448 |
extern VideoBootStrap PND_bootstrap;
|
slouken@3161
|
449 |
#endif
|
slouken@1361
|
450 |
|
slouken@3685
|
451 |
#define SDL_CurrentDisplay (&_this->displays[_this->current_display])
|
slouken@3685
|
452 |
#define SDL_CurrentRenderer (SDL_CurrentDisplay->current_renderer)
|
slouken@0
|
453 |
|
slouken@1895
|
454 |
extern SDL_VideoDevice *SDL_GetVideoDevice();
|
slouken@2753
|
455 |
extern int SDL_AddBasicVideoDisplay(const SDL_DisplayMode * desktop_mode);
|
slouken@2753
|
456 |
extern int SDL_AddVideoDisplay(const SDL_VideoDisplay * display);
|
slouken@3500
|
457 |
extern SDL_bool SDL_AddDisplayMode(SDL_VideoDisplay *display, const SDL_DisplayMode * mode);
|
slouken@3500
|
458 |
extern int SDL_GetNumDisplayModesForDisplay(SDL_VideoDisplay * display);
|
slouken@3500
|
459 |
extern int SDL_GetDisplayModeForDisplay(SDL_VideoDisplay * display, int index, SDL_DisplayMode * mode);
|
slouken@3500
|
460 |
extern int SDL_GetDesktopDisplayModeForDisplay(SDL_VideoDisplay * display, SDL_DisplayMode * mode);
|
slouken@3500
|
461 |
extern int SDL_GetCurrentDisplayModeForDisplay(SDL_VideoDisplay * display, SDL_DisplayMode * mode);
|
slouken@3500
|
462 |
extern SDL_DisplayMode * SDL_GetClosestDisplayModeForDisplay(SDL_VideoDisplay * display, const SDL_DisplayMode * mode, SDL_DisplayMode * closest);
|
slouken@3500
|
463 |
extern int SDL_SetDisplayModeForDisplay(SDL_VideoDisplay * display, const SDL_DisplayMode * mode);
|
slouken@3501
|
464 |
extern int SDL_SetPaletteForDisplay(SDL_VideoDisplay * display, const SDL_Color * colors, int firstcolor, int ncolors);
|
slouken@3501
|
465 |
extern int SDL_GetPaletteForDisplay(SDL_VideoDisplay * display, SDL_Color * colors, int firstcolor, int ncolors);
|
slouken@3500
|
466 |
extern int SDL_SetGammaRampForDisplay(SDL_VideoDisplay * display, const Uint16 * red, const Uint16 * green, const Uint16 * blue);
|
slouken@3500
|
467 |
extern int SDL_GetGammaRampForDisplay(SDL_VideoDisplay * display, Uint16 * red, Uint16 * green, Uint16 * blue);
|
slouken@3501
|
468 |
extern void SDL_AddRenderDriver(SDL_VideoDisplay *display, const SDL_RenderDriver * driver);
|
slouken@1895
|
469 |
|
slouken@2753
|
470 |
extern int SDL_RecreateWindow(SDL_Window * window, Uint32 flags);
|
slouken@1895
|
471 |
|
slouken@2753
|
472 |
extern void SDL_OnWindowShown(SDL_Window * window);
|
slouken@2753
|
473 |
extern void SDL_OnWindowHidden(SDL_Window * window);
|
slouken@2753
|
474 |
extern void SDL_OnWindowResized(SDL_Window * window);
|
slouken@3502
|
475 |
extern void SDL_OnWindowMinimized(SDL_Window * window);
|
slouken@3502
|
476 |
extern void SDL_OnWindowRestored(SDL_Window * window);
|
slouken@2753
|
477 |
extern void SDL_OnWindowFocusGained(SDL_Window * window);
|
slouken@2753
|
478 |
extern void SDL_OnWindowFocusLost(SDL_Window * window);
|
slouken@3685
|
479 |
extern SDL_Window * SDL_GetFocusWindow(void);
|
slouken@0
|
480 |
|
slouken@2753
|
481 |
#endif /* _SDL_sysvideo_h */
|
slouken@1895
|
482 |
|
slouken@1895
|
483 |
/* vi: set ts=4 sw=4 expandtab: */
|