Skip to content

Latest commit

 

History

History
951 lines (853 loc) · 37.1 KB

SDL_video.h

File metadata and controls

951 lines (853 loc) · 37.1 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 Sam Lantinga
Apr 26, 2001
Apr 26, 2001
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
Apr 26, 2001
Apr 26, 2001
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
Apr 26, 2001
Apr 26, 2001
9
10
11
12
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Feb 1, 2006
Feb 1, 2006
13
Lesser General Public License for more details.
Apr 26, 2001
Apr 26, 2001
14
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Apr 26, 2001
Apr 26, 2001
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
*/
Sep 21, 2009
Sep 21, 2009
23
24
25
/** @file SDL_video.h
* Header file for access to the SDL raw framebuffer window
*/
Apr 26, 2001
Apr 26, 2001
26
27
28
29
#ifndef _SDL_video_h
#define _SDL_video_h
Feb 10, 2006
Feb 10, 2006
30
#include "SDL_stdinc.h"
Feb 10, 2006
Feb 10, 2006
31
#include "SDL_error.h"
Apr 26, 2001
Apr 26, 2001
32
33
34
35
36
37
38
39
#include "SDL_rwops.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif
Sep 21, 2009
Sep 21, 2009
40
41
42
43
/** @name Transparency definitions
* These define alpha as the opacity of a surface
*/
/*@{*/
Apr 26, 2001
Apr 26, 2001
44
45
#define SDL_ALPHA_OPAQUE 255
#define SDL_ALPHA_TRANSPARENT 0
Sep 21, 2009
Sep 21, 2009
46
/*@}*/
Apr 26, 2001
Apr 26, 2001
47
Sep 21, 2009
Sep 21, 2009
48
49
/** @name Useful data types */
/*@{*/
Jul 18, 2004
Jul 18, 2004
50
typedef struct SDL_Rect {
Apr 26, 2001
Apr 26, 2001
51
52
53
54
Sint16 x, y;
Uint16 w, h;
} SDL_Rect;
Jul 18, 2004
Jul 18, 2004
55
typedef struct SDL_Color {
Apr 26, 2001
Apr 26, 2001
56
57
58
59
60
Uint8 r;
Uint8 g;
Uint8 b;
Uint8 unused;
} SDL_Color;
Jun 28, 2003
Jun 28, 2003
61
#define SDL_Colour SDL_Color
Apr 26, 2001
Apr 26, 2001
62
Jul 18, 2004
Jul 18, 2004
63
typedef struct SDL_Palette {
Apr 26, 2001
Apr 26, 2001
64
65
66
int ncolors;
SDL_Color *colors;
} SDL_Palette;
Sep 21, 2009
Sep 21, 2009
67
/*@}*/
Apr 26, 2001
Apr 26, 2001
68
Sep 21, 2009
Sep 21, 2009
69
/** Everything in the pixel format structure is read-only */
Apr 26, 2001
Apr 26, 2001
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
typedef struct SDL_PixelFormat {
SDL_Palette *palette;
Uint8 BitsPerPixel;
Uint8 BytesPerPixel;
Uint8 Rloss;
Uint8 Gloss;
Uint8 Bloss;
Uint8 Aloss;
Uint8 Rshift;
Uint8 Gshift;
Uint8 Bshift;
Uint8 Ashift;
Uint32 Rmask;
Uint32 Gmask;
Uint32 Bmask;
Uint32 Amask;
Sep 21, 2009
Sep 21, 2009
87
/** RGB color key information */
Apr 26, 2001
Apr 26, 2001
88
Uint32 colorkey;
Sep 21, 2009
Sep 21, 2009
89
/** Alpha value information (per-surface alpha) */
Apr 26, 2001
Apr 26, 2001
90
91
92
Uint8 alpha;
} SDL_PixelFormat;
Sep 21, 2009
Sep 21, 2009
93
94
95
/** This structure should be treated as read-only, except for 'pixels',
* which, if not NULL, contains the raw pixel data for the surface.
*/
Apr 26, 2001
Apr 26, 2001
96
typedef struct SDL_Surface {
Sep 21, 2009
Sep 21, 2009
97
98
99
100
101
102
103
104
Uint32 flags; /**< Read-only */
SDL_PixelFormat *format; /**< Read-only */
int w, h; /**< Read-only */
Uint16 pitch; /**< Read-only */
void *pixels; /**< Read-write */
int offset; /**< Private */
/** Hardware-specific surface info */
Apr 26, 2001
Apr 26, 2001
105
106
struct private_hwdata *hwdata;
Sep 21, 2009
Sep 21, 2009
107
108
109
/** clipping information */
SDL_Rect clip_rect; /**< Read-only */
Uint32 unused1; /**< for binary compatibility */
Apr 26, 2001
Apr 26, 2001
110
Sep 21, 2009
Sep 21, 2009
111
112
/** Allow recursive locks */
Uint32 locked; /**< Private */
Apr 26, 2001
Apr 26, 2001
113
Sep 21, 2009
Sep 21, 2009
114
115
/** info for fast blit mapping to other surfaces */
struct SDL_BlitMap *map; /**< Private */
Apr 26, 2001
Apr 26, 2001
116
Sep 21, 2009
Sep 21, 2009
117
118
/** format version, bumped at every change to invalidate blit maps */
unsigned int format_version; /**< Private */
Apr 26, 2001
Apr 26, 2001
119
Sep 21, 2009
Sep 21, 2009
120
121
/** Reference count -- used when freeing surface */
int refcount; /**< Read-mostly */
Apr 26, 2001
Apr 26, 2001
122
123
} SDL_Surface;
Sep 21, 2009
Sep 21, 2009
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/** @name SDL_Surface Flags
* These are the currently supported flags for the SDL_surface
*/
/*@{*/
/** Available for SDL_CreateRGBSurface() or SDL_SetVideoMode() */
/*@{*/
#define SDL_SWSURFACE 0x00000000 /**< Surface is in system memory */
#define SDL_HWSURFACE 0x00000001 /**< Surface is in video memory */
#define SDL_ASYNCBLIT 0x00000004 /**< Use asynchronous blits if possible */
/*@}*/
/** Available for SDL_SetVideoMode() */
/*@{*/
#define SDL_ANYFORMAT 0x10000000 /**< Allow any video depth/pixel-format */
#define SDL_HWPALETTE 0x20000000 /**< Surface has exclusive palette */
#define SDL_DOUBLEBUF 0x40000000 /**< Set up double-buffered video mode */
#define SDL_FULLSCREEN 0x80000000 /**< Surface is a full screen display */
#define SDL_OPENGL 0x00000002 /**< Create an OpenGL rendering context */
#define SDL_OPENGLBLIT 0x0000000A /**< Create an OpenGL rendering context and use it for blitting */
#define SDL_RESIZABLE 0x00000010 /**< This video mode may be resized */
#define SDL_NOFRAME 0x00000020 /**< No window caption or edge frame */
/*@}*/
/** Used internally (read-only) */
/*@{*/
#define SDL_HWACCEL 0x00000100 /**< Blit uses hardware acceleration */
#define SDL_SRCCOLORKEY 0x00001000 /**< Blit uses a source color key */
#define SDL_RLEACCELOK 0x00002000 /**< Private flag */
#define SDL_RLEACCEL 0x00004000 /**< Surface is RLE encoded */
#define SDL_SRCALPHA 0x00010000 /**< Blit uses source alpha blending */
#define SDL_PREALLOC 0x01000000 /**< Surface uses preallocated memory */
/*@}*/
/*@}*/
/** Evaluates to true if the surface needs to be locked before access */
Apr 26, 2001
Apr 26, 2001
161
162
163
164
#define SDL_MUSTLOCK(surface) \
(surface->offset || \
((surface->flags & (SDL_HWSURFACE|SDL_ASYNCBLIT|SDL_RLEACCEL)) != 0))
Sep 21, 2009
Sep 21, 2009
165
/** typedef for private surface blitting functions */
Jan 2, 2005
Jan 2, 2005
166
167
168
typedef int (*SDL_blit)(struct SDL_Surface *src, SDL_Rect *srcrect,
struct SDL_Surface *dst, SDL_Rect *dstrect);
Apr 26, 2001
Apr 26, 2001
169
Sep 21, 2009
Sep 21, 2009
170
/** Useful for determining the video hardware capabilities */
Jul 18, 2004
Jul 18, 2004
171
typedef struct SDL_VideoInfo {
Sep 21, 2009
Sep 21, 2009
172
173
Uint32 hw_available :1; /**< Flag: Can you create hardware surfaces? */
Uint32 wm_available :1; /**< Flag: Can you talk to a window manager? */
Apr 26, 2001
Apr 26, 2001
174
175
Uint32 UnusedBits1 :6;
Uint32 UnusedBits2 :1;
Sep 21, 2009
Sep 21, 2009
176
177
178
179
180
181
182
Uint32 blit_hw :1; /**< Flag: Accelerated blits HW --> HW */
Uint32 blit_hw_CC :1; /**< Flag: Accelerated blits with Colorkey */
Uint32 blit_hw_A :1; /**< Flag: Accelerated blits with Alpha */
Uint32 blit_sw :1; /**< Flag: Accelerated blits SW --> HW */
Uint32 blit_sw_CC :1; /**< Flag: Accelerated blits with Colorkey */
Uint32 blit_sw_A :1; /**< Flag: Accelerated blits with Alpha */
Uint32 blit_fill :1; /**< Flag: Accelerated color fill */
Apr 26, 2001
Apr 26, 2001
183
Uint32 UnusedBits3 :16;
Sep 21, 2009
Sep 21, 2009
184
185
186
187
Uint32 video_mem; /**< The total amount of video memory (in K) */
SDL_PixelFormat *vfmt; /**< Value: The format of the video surface */
int current_w; /**< Value: The current video mode width */
int current_h; /**< Value: The current video mode height */
Apr 26, 2001
Apr 26, 2001
188
189
190
} SDL_VideoInfo;
Sep 21, 2009
Sep 21, 2009
191
192
193
194
195
196
197
/** @name Overlay Formats
* The most common video overlay formats.
* For an explanation of these pixel formats, see:
* http://www.webartz.com/fourcc/indexyuv.htm
*
* For information on the relationship between color spaces, see:
* http://www.neuro.sfc.keio.ac.jp/~aly/polygon/info/color-space-faq.html
Apr 26, 2001
Apr 26, 2001
198
*/
Sep 21, 2009
Sep 21, 2009
199
200
201
202
203
204
205
/*@{*/
#define SDL_YV12_OVERLAY 0x32315659 /**< Planar mode: Y + V + U (3 planes) */
#define SDL_IYUV_OVERLAY 0x56555949 /**< Planar mode: Y + U + V (3 planes) */
#define SDL_YUY2_OVERLAY 0x32595559 /**< Packed mode: Y0+U0+Y1+V0 (1 plane) */
#define SDL_UYVY_OVERLAY 0x59565955 /**< Packed mode: U0+Y0+V0+Y1 (1 plane) */
#define SDL_YVYU_OVERLAY 0x55595659 /**< Packed mode: Y0+V0+Y1+U0 (1 plane) */
/*@}*/
Apr 26, 2001
Apr 26, 2001
206
Sep 21, 2009
Sep 21, 2009
207
/** The YUV hardware video overlay */
Apr 26, 2001
Apr 26, 2001
208
typedef struct SDL_Overlay {
Sep 21, 2009
Sep 21, 2009
209
210
211
212
213
214
215
216
Uint32 format; /**< Read-only */
int w, h; /**< Read-only */
int planes; /**< Read-only */
Uint16 *pitches; /**< Read-only */
Uint8 **pixels; /**< Read-write */
/** @name Hardware-specific surface info */
/*@{*/
Apr 26, 2001
Apr 26, 2001
217
218
struct private_yuvhwfuncs *hwfuncs;
struct private_yuvhwdata *hwdata;
Sep 21, 2009
Sep 21, 2009
219
/*@{*/
Apr 26, 2001
Apr 26, 2001
220
Sep 21, 2009
Sep 21, 2009
221
222
223
/** @name Special flags */
/*@{*/
Uint32 hw_overlay :1; /**< Flag: This overlay hardware accelerated? */
Apr 26, 2001
Apr 26, 2001
224
Uint32 UnusedBits :31;
Sep 21, 2009
Sep 21, 2009
225
/*@}*/
Apr 26, 2001
Apr 26, 2001
226
227
228
} SDL_Overlay;
Sep 21, 2009
Sep 21, 2009
229
/** Public enumeration for setting the OpenGL window attributes. */
Apr 26, 2001
Apr 26, 2001
230
231
232
233
234
235
236
237
238
239
240
241
typedef enum {
SDL_GL_RED_SIZE,
SDL_GL_GREEN_SIZE,
SDL_GL_BLUE_SIZE,
SDL_GL_ALPHA_SIZE,
SDL_GL_BUFFER_SIZE,
SDL_GL_DOUBLEBUFFER,
SDL_GL_DEPTH_SIZE,
SDL_GL_STENCIL_SIZE,
SDL_GL_ACCUM_RED_SIZE,
SDL_GL_ACCUM_GREEN_SIZE,
SDL_GL_ACCUM_BLUE_SIZE,
Aug 19, 2002
Aug 19, 2002
242
SDL_GL_ACCUM_ALPHA_SIZE,
Jul 22, 2003
Jul 22, 2003
243
SDL_GL_STEREO,
Jul 22, 2003
Jul 22, 2003
244
SDL_GL_MULTISAMPLEBUFFERS,
Apr 27, 2006
Apr 27, 2006
245
SDL_GL_MULTISAMPLESAMPLES,
Apr 27, 2006
Apr 27, 2006
246
SDL_GL_ACCELERATED_VISUAL,
Apr 27, 2006
Apr 27, 2006
247
SDL_GL_SWAP_CONTROL
Apr 26, 2001
Apr 26, 2001
248
249
} SDL_GLattr;
Sep 21, 2009
Sep 21, 2009
250
251
/** @name flags for SDL_SetPalette() */
/*@{*/
Apr 26, 2001
Apr 26, 2001
252
253
#define SDL_LOGPAL 0x01
#define SDL_PHYSPAL 0x02
Sep 21, 2009
Sep 21, 2009
254
/*@}*/
Apr 26, 2001
Apr 26, 2001
255
256
257
/* Function prototypes */
Sep 21, 2009
Sep 21, 2009
258
259
260
/**
* @name Video Init and Quit
* These functions are used internally, and should not be used unless you
Apr 26, 2001
Apr 26, 2001
261
262
* have a specific need to specify the video driver you want to use.
* You should normally use SDL_Init() or SDL_InitSubSystem().
Sep 21, 2009
Sep 21, 2009
263
264
265
266
*/
/*@{*/
/**
* Initializes the video subsystem. Sets up a connection
Apr 26, 2001
Apr 26, 2001
267
268
269
270
271
272
273
274
* to the window manager, etc, and determines the current video mode and
* pixel format, but does not initialize a window or graphics mode.
* Note that event handling is activated by this routine.
*
* If you use both sound and video in your application, you need to call
* SDL_Init() before opening the sound device, otherwise under Win32 DirectX,
* you won't be able to set full-screen display modes.
*/
Apr 11, 2002
Apr 11, 2002
275
276
extern DECLSPEC int SDLCALL SDL_VideoInit(const char *driver_name, Uint32 flags);
extern DECLSPEC void SDLCALL SDL_VideoQuit(void);
Sep 21, 2009
Sep 21, 2009
277
/*@}*/
Apr 26, 2001
Apr 26, 2001
278
Sep 21, 2009
Sep 21, 2009
279
280
/**
* This function fills the given character buffer with the name of the
Apr 26, 2001
Apr 26, 2001
281
282
283
* video driver, and returns a pointer to it if the video driver has
* been initialized. It returns NULL if no driver has been initialized.
*/
Apr 11, 2002
Apr 11, 2002
284
extern DECLSPEC char * SDLCALL SDL_VideoDriverName(char *namebuf, int maxlen);
Apr 26, 2001
Apr 26, 2001
285
Sep 21, 2009
Sep 21, 2009
286
/**
Apr 26, 2001
Apr 26, 2001
287
288
289
290
291
* This function returns a pointer to the current display surface.
* If SDL is doing format conversion on the display surface, this
* function returns the publicly visible surface, not the real video
* surface.
*/
Apr 11, 2002
Apr 11, 2002
292
extern DECLSPEC SDL_Surface * SDLCALL SDL_GetVideoSurface(void);
Apr 26, 2001
Apr 26, 2001
293
Sep 21, 2009
Sep 21, 2009
294
/**
Apr 26, 2001
Apr 26, 2001
295
296
297
298
299
* This function returns a read-only pointer to information about the
* video hardware. If this is called before SDL_SetVideoMode(), the 'vfmt'
* member of the returned structure will contain the pixel format of the
* "best" video mode.
*/
Apr 11, 2002
Apr 11, 2002
300
extern DECLSPEC const SDL_VideoInfo * SDLCALL SDL_GetVideoInfo(void);
Apr 26, 2001
Apr 26, 2001
301
Sep 21, 2009
Sep 21, 2009
302
/**
Apr 26, 2001
Apr 26, 2001
303
304
305
306
307
308
309
310
311
312
* Check to see if a particular video mode is supported.
* It returns 0 if the requested mode is not supported under any bit depth,
* or returns the bits-per-pixel of the closest available mode with the
* given width and height. If this bits-per-pixel is different from the
* one used when setting the video mode, SDL_SetVideoMode() will succeed,
* but will emulate the requested bits-per-pixel with a shadow surface.
*
* The arguments to SDL_VideoModeOK() are the same ones you would pass to
* SDL_SetVideoMode()
*/
Apr 11, 2002
Apr 11, 2002
313
extern DECLSPEC int SDLCALL SDL_VideoModeOK(int width, int height, int bpp, Uint32 flags);
Apr 26, 2001
Apr 26, 2001
314
Sep 21, 2009
Sep 21, 2009
315
/**
Apr 26, 2001
Apr 26, 2001
316
317
318
319
320
321
322
323
* Return a pointer to an array of available screen dimensions for the
* given format and video flags, sorted largest to smallest. Returns
* NULL if there are no dimensions available for a particular format,
* or (SDL_Rect **)-1 if any dimension is okay for the given format.
*
* If 'format' is NULL, the mode list will be for the format given
* by SDL_GetVideoInfo()->vfmt
*/
Apr 11, 2002
Apr 11, 2002
324
extern DECLSPEC SDL_Rect ** SDLCALL SDL_ListModes(SDL_PixelFormat *format, Uint32 flags);
Apr 26, 2001
Apr 26, 2001
325
Sep 21, 2009
Sep 21, 2009
326
/**
Apr 26, 2001
Apr 26, 2001
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
* Set up a video mode with the specified width, height and bits-per-pixel.
*
* If 'bpp' is 0, it is treated as the current display bits per pixel.
*
* If SDL_ANYFORMAT is set in 'flags', the SDL library will try to set the
* requested bits-per-pixel, but will return whatever video pixel format is
* available. The default is to emulate the requested pixel format if it
* is not natively available.
*
* If SDL_HWSURFACE is set in 'flags', the video surface will be placed in
* video memory, if possible, and you may have to call SDL_LockSurface()
* in order to access the raw framebuffer. Otherwise, the video surface
* will be created in system memory.
*
* If SDL_ASYNCBLIT is set in 'flags', SDL will try to perform rectangle
* updates asynchronously, but you must always lock before accessing pixels.
* SDL will wait for updates to complete before returning from the lock.
*
* If SDL_HWPALETTE is set in 'flags', the SDL library will guarantee
* that the colors set by SDL_SetColors() will be the colors you get.
* Otherwise, in 8-bit mode, SDL_SetColors() may not be able to set all
* of the colors exactly the way they are requested, and you should look
* at the video surface structure to determine the actual palette.
* If SDL cannot guarantee that the colors you request can be set,
* i.e. if the colormap is shared, then the video surface may be created
* under emulation in system memory, overriding the SDL_HWSURFACE flag.
*
* If SDL_FULLSCREEN is set in 'flags', the SDL library will try to set
* a fullscreen video mode. The default is to create a windowed mode
* if the current graphics system has a window manager.
* If the SDL library is able to set a fullscreen video mode, this flag
* will be set in the surface that is returned.
*
* If SDL_DOUBLEBUF is set in 'flags', the SDL library will try to set up
* two surfaces in video memory and swap between them when you call
* SDL_Flip(). This is usually slower than the normal single-buffering
* scheme, but prevents "tearing" artifacts caused by modifying video
* memory while the monitor is refreshing. It should only be used by
* applications that redraw the entire screen on every update.
*
* If SDL_RESIZABLE is set in 'flags', the SDL library will allow the
* window manager, if any, to resize the window at runtime. When this
* occurs, SDL will send a SDL_VIDEORESIZE event to you application,
* and you must respond to the event by re-calling SDL_SetVideoMode()
* with the requested size (or another size that suits the application).
*
* If SDL_NOFRAME is set in 'flags', the SDL library will create a window
* without any title bar or frame decoration. Fullscreen video modes have
* this flag set automatically.
*
* This function returns the video framebuffer surface, or NULL if it fails.
*
* If you rely on functionality provided by certain video flags, check the
* flags of the returned surface to make sure that functionality is available.
* SDL will fall back to reduced functionality if the exact flags you wanted
* are not available.
*/
Apr 11, 2002
Apr 11, 2002
384
extern DECLSPEC SDL_Surface * SDLCALL SDL_SetVideoMode
Apr 26, 2001
Apr 26, 2001
385
386
(int width, int height, int bpp, Uint32 flags);
Sep 21, 2009
Sep 21, 2009
387
/** @name SDL_Update Functions
Apr 26, 2001
Apr 26, 2001
388
389
* These functions should not be called while 'screen' is locked.
*/
Sep 21, 2009
Sep 21, 2009
390
391
392
393
/*@{*/
/**
* Makes sure the given list of rectangles is updated on the given screen.
*/
Apr 11, 2002
Apr 11, 2002
394
extern DECLSPEC void SDLCALL SDL_UpdateRects
Apr 26, 2001
Apr 26, 2001
395
(SDL_Surface *screen, int numrects, SDL_Rect *rects);
Sep 21, 2009
Sep 21, 2009
396
397
398
399
/**
* If 'x', 'y', 'w' and 'h' are all 0, SDL_UpdateRect will update the entire
* screen.
*/
Apr 11, 2002
Apr 11, 2002
400
extern DECLSPEC void SDLCALL SDL_UpdateRect
Apr 26, 2001
Apr 26, 2001
401
(SDL_Surface *screen, Sint32 x, Sint32 y, Uint32 w, Uint32 h);
Sep 21, 2009
Sep 21, 2009
402
/*@}*/
Apr 26, 2001
Apr 26, 2001
403
Sep 21, 2009
Sep 21, 2009
404
/**
Apr 26, 2001
Apr 26, 2001
405
406
407
408
409
410
411
412
413
* On hardware that supports double-buffering, this function sets up a flip
* and returns. The hardware will wait for vertical retrace, and then swap
* video buffers before the next video surface blit or lock will return.
* On hardware that doesn not support double-buffering, this is equivalent
* to calling SDL_UpdateRect(screen, 0, 0, 0, 0);
* The SDL_DOUBLEBUF flag must have been passed to SDL_SetVideoMode() when
* setting the video mode for this function to perform hardware flipping.
* This function returns 0 if successful, or -1 if there was an error.
*/
Apr 11, 2002
Apr 11, 2002
414
extern DECLSPEC int SDLCALL SDL_Flip(SDL_Surface *screen);
Apr 26, 2001
Apr 26, 2001
415
Sep 21, 2009
Sep 21, 2009
416
/**
Apr 26, 2001
Apr 26, 2001
417
418
419
420
421
422
423
* Set the gamma correction for each of the color channels.
* The gamma values range (approximately) between 0.1 and 10.0
*
* If this function isn't supported directly by the hardware, it will
* be emulated using gamma ramps, if available. If successful, this
* function returns 0, otherwise it returns -1.
*/
Apr 11, 2002
Apr 11, 2002
424
extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
Apr 26, 2001
Apr 26, 2001
425
Sep 21, 2009
Sep 21, 2009
426
/**
Apr 26, 2001
Apr 26, 2001
427
428
429
430
431
432
433
434
435
436
437
* Set the gamma translation table for the red, green, and blue channels
* of the video hardware. Each table is an array of 256 16-bit quantities,
* representing a mapping between the input and output for that channel.
* The input is the index into the array, and the output is the 16-bit
* gamma value at that index, scaled to the output color precision.
*
* You may pass NULL for any of the channels to leave it unchanged.
* If the call succeeds, it will return 0. If the display driver or
* hardware does not support gamma translation, or otherwise fails,
* this function will return -1.
*/
Aug 6, 2003
Aug 6, 2003
438
extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
Apr 26, 2001
Apr 26, 2001
439
Sep 21, 2009
Sep 21, 2009
440
/**
Apr 26, 2001
Apr 26, 2001
441
442
443
444
445
446
447
448
* Retrieve the current values of the gamma translation tables.
*
* You must pass in valid pointers to arrays of 256 16-bit quantities.
* Any of the pointers may be NULL to ignore that channel.
* If the call succeeds, it will return 0. If the display driver or
* hardware does not support gamma translation, or otherwise fails,
* this function will return -1.
*/
Apr 11, 2002
Apr 11, 2002
449
extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
Apr 26, 2001
Apr 26, 2001
450
Sep 21, 2009
Sep 21, 2009
451
/**
Apr 26, 2001
Apr 26, 2001
452
453
454
455
456
457
458
459
460
461
462
463
464
465
* Sets a portion of the colormap for the given 8-bit surface. If 'surface'
* is not a palettized surface, this function does nothing, returning 0.
* If all of the colors were set as passed to SDL_SetColors(), it will
* return 1. If not all the color entries were set exactly as given,
* it will return 0, and you should look at the surface palette to
* determine the actual color palette.
*
* When 'surface' is the surface associated with the current display, the
* display colormap will be updated with the requested colors. If
* SDL_HWPALETTE was set in SDL_SetVideoMode() flags, SDL_SetColors()
* will always return 1, and the palette is guaranteed to be set the way
* you desire, even if the window colormap has to be warped or run under
* emulation.
*/
Apr 11, 2002
Apr 11, 2002
466
extern DECLSPEC int SDLCALL SDL_SetColors(SDL_Surface *surface,
Apr 26, 2001
Apr 26, 2001
467
468
SDL_Color *colors, int firstcolor, int ncolors);
Sep 21, 2009
Sep 21, 2009
469
/**
Apr 26, 2001
Apr 26, 2001
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
* Sets a portion of the colormap for a given 8-bit surface.
* 'flags' is one or both of:
* SDL_LOGPAL -- set logical palette, which controls how blits are mapped
* to/from the surface,
* SDL_PHYSPAL -- set physical palette, which controls how pixels look on
* the screen
* Only screens have physical palettes. Separate change of physical/logical
* palettes is only possible if the screen has SDL_HWPALETTE set.
*
* The return value is 1 if all colours could be set as requested, and 0
* otherwise.
*
* SDL_SetColors() is equivalent to calling this function with
* flags = (SDL_LOGPAL|SDL_PHYSPAL).
*/
Apr 11, 2002
Apr 11, 2002
485
extern DECLSPEC int SDLCALL SDL_SetPalette(SDL_Surface *surface, int flags,
Apr 26, 2001
Apr 26, 2001
486
487
488
SDL_Color *colors, int firstcolor,
int ncolors);
Sep 21, 2009
Sep 21, 2009
489
/**
Apr 26, 2001
Apr 26, 2001
490
491
* Maps an RGB triple to an opaque pixel value for a given pixel format
*/
Apr 11, 2002
Apr 11, 2002
492
extern DECLSPEC Uint32 SDLCALL SDL_MapRGB
Apr 4, 2007
Apr 4, 2007
493
494
(const SDL_PixelFormat * const format,
const Uint8 r, const Uint8 g, const Uint8 b);
Apr 26, 2001
Apr 26, 2001
495
Sep 21, 2009
Sep 21, 2009
496
/**
Apr 26, 2001
Apr 26, 2001
497
498
* Maps an RGBA quadruple to a pixel value for a given pixel format
*/
Apr 4, 2007
Apr 4, 2007
499
500
501
extern DECLSPEC Uint32 SDLCALL SDL_MapRGBA
(const SDL_PixelFormat * const format,
const Uint8 r, const Uint8 g, const Uint8 b, const Uint8 a);
Apr 26, 2001
Apr 26, 2001
502
Sep 21, 2009
Sep 21, 2009
503
/**
Apr 26, 2001
Apr 26, 2001
504
505
* Maps a pixel value into the RGB components for a given pixel format
*/
Apr 13, 2009
Apr 13, 2009
506
507
extern DECLSPEC void SDLCALL SDL_GetRGB(Uint32 pixel,
const SDL_PixelFormat * const fmt,
Apr 26, 2001
Apr 26, 2001
508
509
Uint8 *r, Uint8 *g, Uint8 *b);
Sep 21, 2009
Sep 21, 2009
510
/**
Apr 26, 2001
Apr 26, 2001
511
512
* Maps a pixel value into the RGBA components for a given pixel format
*/
Apr 13, 2009
Apr 13, 2009
513
514
515
extern DECLSPEC void SDLCALL SDL_GetRGBA(Uint32 pixel,
const SDL_PixelFormat * const fmt,
Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a);
Apr 26, 2001
Apr 26, 2001
516
Sep 21, 2009
Sep 21, 2009
517
518
519
/** @sa SDL_CreateRGBSurface */
#define SDL_AllocSurface SDL_CreateRGBSurface
/**
Apr 26, 2001
Apr 26, 2001
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
* Allocate and free an RGB surface (must be called after SDL_SetVideoMode)
* If the depth is 4 or 8 bits, an empty palette is allocated for the surface.
* If the depth is greater than 8 bits, the pixel format is set using the
* flags '[RGB]mask'.
* If the function runs out of memory, it will return NULL.
*
* The 'flags' tell what kind of surface to create.
* SDL_SWSURFACE means that the surface should be created in system memory.
* SDL_HWSURFACE means that the surface should be created in video memory,
* with the same format as the display surface. This is useful for surfaces
* that will not change much, to take advantage of hardware acceleration
* when being blitted to the display surface.
* SDL_ASYNCBLIT means that SDL will try to perform asynchronous blits with
* this surface, but you must always lock it before accessing the pixels.
* SDL will wait for current blits to finish before returning from the lock.
* SDL_SRCCOLORKEY indicates that the surface will be used for colorkey blits.
* If the hardware supports acceleration of colorkey blits between
* two surfaces in video memory, SDL will try to place the surface in
* video memory. If this isn't possible or if there is no hardware
* acceleration available, the surface will be placed in system memory.
* SDL_SRCALPHA means that the surface will be used for alpha blits and
* if the hardware supports hardware acceleration of alpha blits between
* two surfaces in video memory, to place the surface in video memory
* if possible, otherwise it will be placed in system memory.
* If the surface is created in video memory, blits will be _much_ faster,
* but the surface format must be identical to the video surface format,
* and the only way to access the pixels member of the surface is to use
* the SDL_LockSurface() and SDL_UnlockSurface() calls.
* If the requested surface actually resides in video memory, SDL_HWSURFACE
* will be set in the flags member of the returned surface. If for some
* reason the surface could not be placed in video memory, it will not have
* the SDL_HWSURFACE flag set, and will be created in system memory instead.
*/
Apr 11, 2002
Apr 11, 2002
553
extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurface
Apr 26, 2001
Apr 26, 2001
554
555
(Uint32 flags, int width, int height, int depth,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
Sep 21, 2009
Sep 21, 2009
556
/** @sa SDL_CreateRGBSurface */
Apr 11, 2002
Apr 11, 2002
557
extern DECLSPEC SDL_Surface * SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels,
Apr 26, 2001
Apr 26, 2001
558
559
int width, int height, int depth, int pitch,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
Apr 11, 2002
Apr 11, 2002
560
extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface *surface);
Apr 26, 2001
Apr 26, 2001
561
Sep 21, 2009
Sep 21, 2009
562
/**
Apr 26, 2001
Apr 26, 2001
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
* SDL_LockSurface() sets up a surface for directly accessing the pixels.
* Between calls to SDL_LockSurface()/SDL_UnlockSurface(), you can write
* to and read from 'surface->pixels', using the pixel format stored in
* 'surface->format'. Once you are done accessing the surface, you should
* use SDL_UnlockSurface() to release it.
*
* Not all surfaces require locking. If SDL_MUSTLOCK(surface) evaluates
* to 0, then you can read and write to the surface at any time, and the
* pixel format of the surface will not change. In particular, if the
* SDL_HWSURFACE flag is not given when calling SDL_SetVideoMode(), you
* will not need to lock the display surface before accessing it.
*
* No operating system or library calls should be made between lock/unlock
* pairs, as critical system locks may be held during this time.
*
* SDL_LockSurface() returns 0, or -1 if the surface couldn't be locked.
*/
Apr 11, 2002
Apr 11, 2002
580
581
extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface *surface);
extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface *surface);
Apr 26, 2001
Apr 26, 2001
582
Sep 21, 2009
Sep 21, 2009
583
/**
Apr 26, 2001
Apr 26, 2001
584
585
586
587
588
* Load a surface from a seekable SDL data source (memory or file.)
* If 'freesrc' is non-zero, the source will be closed after being read.
* Returns the new surface, or NULL if there was an error.
* The new surface should be freed with SDL_FreeSurface().
*/
Apr 11, 2002
Apr 11, 2002
589
extern DECLSPEC SDL_Surface * SDLCALL SDL_LoadBMP_RW(SDL_RWops *src, int freesrc);
Apr 26, 2001
Apr 26, 2001
590
Sep 21, 2009
Sep 21, 2009
591
/** Convenience macro -- load a surface from a file */
Apr 26, 2001
Apr 26, 2001
592
593
#define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1)
Sep 21, 2009
Sep 21, 2009
594
/**
Apr 26, 2001
Apr 26, 2001
595
596
597
598
* Save a surface to a seekable SDL data source (memory or file.)
* If 'freedst' is non-zero, the source will be closed after being written.
* Returns 0 if successful or -1 if there was an error.
*/
Apr 11, 2002
Apr 11, 2002
599
extern DECLSPEC int SDLCALL SDL_SaveBMP_RW
Apr 26, 2001
Apr 26, 2001
600
601
(SDL_Surface *surface, SDL_RWops *dst, int freedst);
Sep 21, 2009
Sep 21, 2009
602
/** Convenience macro -- save a surface to a file */
Apr 26, 2001
Apr 26, 2001
603
604
605
#define SDL_SaveBMP(surface, file) \
SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1)
Sep 21, 2009
Sep 21, 2009
606
/**
Apr 26, 2001
Apr 26, 2001
607
608
609
610
611
612
613
614
* Sets the color key (transparent pixel) in a blittable surface.
* If 'flag' is SDL_SRCCOLORKEY (optionally OR'd with SDL_RLEACCEL),
* 'key' will be the transparent pixel in the source image of a blit.
* SDL_RLEACCEL requests RLE acceleration for the surface if present,
* and removes RLE acceleration if absent.
* If 'flag' is 0, this function clears any current color key.
* This function returns 0, or -1 if there was an error.
*/
Apr 11, 2002
Apr 11, 2002
615
extern DECLSPEC int SDLCALL SDL_SetColorKey
Apr 26, 2001
Apr 26, 2001
616
617
(SDL_Surface *surface, Uint32 flag, Uint32 key);
Sep 21, 2009
Sep 21, 2009
618
/**
Apr 26, 2001
Apr 26, 2001
619
620
621
622
623
624
625
626
627
628
629
* This function sets the alpha value for the entire surface, as opposed to
* using the alpha component of each pixel. This value measures the range
* of transparency of the surface, 0 being completely transparent to 255
* being completely opaque. An 'alpha' value of 255 causes blits to be
* opaque, the source pixels copied to the destination (the default). Note
* that per-surface alpha can be combined with colorkey transparency.
*
* If 'flag' is 0, alpha blending is disabled for the surface.
* If 'flag' is SDL_SRCALPHA, alpha blending is enabled for the surface.
* OR:ing the flag with SDL_RLEACCEL requests RLE acceleration for the
* surface; if SDL_RLEACCEL is not specified, the RLE accel will be removed.
Aug 1, 2002
Aug 1, 2002
630
631
*
* The 'alpha' parameter is ignored for surfaces that have an alpha channel.
Apr 26, 2001
Apr 26, 2001
632
*/
Apr 11, 2002
Apr 11, 2002
633
extern DECLSPEC int SDLCALL SDL_SetAlpha(SDL_Surface *surface, Uint32 flag, Uint8 alpha);
Apr 26, 2001
Apr 26, 2001
634
Sep 21, 2009
Sep 21, 2009
635
/**
Apr 26, 2001
Apr 26, 2001
636
637
638
639
640
641
642
643
644
645
646
* Sets the clipping rectangle for the destination surface in a blit.
*
* If the clip rectangle is NULL, clipping will be disabled.
* If the clip rectangle doesn't intersect the surface, the function will
* return SDL_FALSE and blits will be completely clipped. Otherwise the
* function returns SDL_TRUE and blits to the surface will be clipped to
* the intersection of the surface area and the clipping rectangle.
*
* Note that blits are automatically clipped to the edges of the source
* and destination surfaces.
*/
Apr 11, 2002
Apr 11, 2002
647
extern DECLSPEC SDL_bool SDLCALL SDL_SetClipRect(SDL_Surface *surface, const SDL_Rect *rect);
Apr 26, 2001
Apr 26, 2001
648
Sep 21, 2009
Sep 21, 2009
649
/**
Apr 26, 2001
Apr 26, 2001
650
651
652
653
* Gets the clipping rectangle for the destination surface in a blit.
* 'rect' must be a pointer to a valid rectangle which will be filled
* with the correct values.
*/
Apr 11, 2002
Apr 11, 2002
654
extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface *surface, SDL_Rect *rect);
Apr 26, 2001
Apr 26, 2001
655
Sep 21, 2009
Sep 21, 2009
656
/**
Apr 26, 2001
Apr 26, 2001
657
658
659
660
661
662
663
664
665
666
667
* Creates a new surface of the specified format, and then copies and maps
* the given surface to it so the blit of the converted surface will be as
* fast as possible. If this function fails, it returns NULL.
*
* The 'flags' parameter is passed to SDL_CreateRGBSurface() and has those
* semantics. You can also pass SDL_RLEACCEL in the flags parameter and
* SDL will try to RLE accelerate colorkey and alpha blits in the resulting
* surface.
*
* This function is used internally by SDL_DisplayFormat().
*/
Apr 11, 2002
Apr 11, 2002
668
extern DECLSPEC SDL_Surface * SDLCALL SDL_ConvertSurface
Apr 26, 2001
Apr 26, 2001
669
670
(SDL_Surface *src, SDL_PixelFormat *fmt, Uint32 flags);
Sep 21, 2009
Sep 21, 2009
671
/**
Apr 26, 2001
Apr 26, 2001
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
* This performs a fast blit from the source surface to the destination
* surface. It assumes that the source and destination rectangles are
* the same size. If either 'srcrect' or 'dstrect' are NULL, the entire
* surface (src or dst) is copied. The final blit rectangles are saved
* in 'srcrect' and 'dstrect' after all clipping is performed.
* If the blit is successful, it returns 0, otherwise it returns -1.
*
* The blit function should not be called on a locked surface.
*
* The blit semantics for surfaces with and without alpha and colorkey
* are defined as follows:
*
* RGBA->RGB:
* SDL_SRCALPHA set:
* alpha-blend (using alpha-channel).
* SDL_SRCCOLORKEY ignored.
* SDL_SRCALPHA not set:
* copy RGB.
* if SDL_SRCCOLORKEY set, only copy the pixels matching the
* RGB values of the source colour key, ignoring alpha in the
* comparison.
*
* RGB->RGBA:
* SDL_SRCALPHA set:
* alpha-blend (using the source per-surface alpha value);
* set destination alpha to opaque.
* SDL_SRCALPHA not set:
Aug 1, 2002
Aug 1, 2002
699
* copy RGB, set destination alpha to source per-surface alpha value.
Apr 26, 2001
Apr 26, 2001
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
* both:
* if SDL_SRCCOLORKEY set, only copy the pixels matching the
* source colour key.
*
* RGBA->RGBA:
* SDL_SRCALPHA set:
* alpha-blend (using the source alpha channel) the RGB values;
* leave destination alpha untouched. [Note: is this correct?]
* SDL_SRCCOLORKEY ignored.
* SDL_SRCALPHA not set:
* copy all of RGBA to the destination.
* if SDL_SRCCOLORKEY set, only copy the pixels matching the
* RGB values of the source colour key, ignoring alpha in the
* comparison.
*
* RGB->RGB:
* SDL_SRCALPHA set:
* alpha-blend (using the source per-surface alpha value).
* SDL_SRCALPHA not set:
* copy RGB.
* both:
* if SDL_SRCCOLORKEY set, only copy the pixels matching the
* source colour key.
*
* If either of the surfaces were in video memory, and the blit returns -2,
* the video memory was lost, so it should be reloaded with artwork and
* re-blitted:
Sep 21, 2009
Sep 21, 2009
727
728
729
730
731
732
733
734
735
* @code
* while ( SDL_BlitSurface(image, imgrect, screen, dstrect) == -2 ) {
* while ( SDL_LockSurface(image) < 0 )
* Sleep(10);
* -- Write image pixels to image->pixels --
* SDL_UnlockSurface(image);
* }
* @endcode
*
Apr 26, 2001
Apr 26, 2001
736
737
738
* This happens under DirectX 5.0 when the system switches away from your
* fullscreen application. The lock will also fail until you have access
* to the video memory again.
Sep 21, 2009
Sep 21, 2009
739
740
741
*
* You should call SDL_BlitSurface() unless you know exactly how SDL
* blitting works internally and how to use the other blit functions.
Apr 26, 2001
Apr 26, 2001
742
743
744
*/
#define SDL_BlitSurface SDL_UpperBlit
Sep 21, 2009
Sep 21, 2009
745
746
747
/** This is the public blit function, SDL_BlitSurface(), and it performs
* rectangle validation and clipping before passing it to SDL_LowerBlit()
*/
Apr 11, 2002
Apr 11, 2002
748
extern DECLSPEC int SDLCALL SDL_UpperBlit
Apr 26, 2001
Apr 26, 2001
749
750
(SDL_Surface *src, SDL_Rect *srcrect,
SDL_Surface *dst, SDL_Rect *dstrect);
Sep 21, 2009
Sep 21, 2009
751
752
753
/** This is a semi-private blit function and it performs low-level surface
* blitting only.
*/
Apr 11, 2002
Apr 11, 2002
754
extern DECLSPEC int SDLCALL SDL_LowerBlit
Apr 26, 2001
Apr 26, 2001
755
756
757
(SDL_Surface *src, SDL_Rect *srcrect,
SDL_Surface *dst, SDL_Rect *dstrect);
Sep 21, 2009
Sep 21, 2009
758
/**
Apr 26, 2001
Apr 26, 2001
759
760
761
762
763
764
765
766
* This function performs a fast fill of the given rectangle with 'color'
* The given rectangle is clipped to the destination surface clip area
* and the final fill rectangle is saved in the passed in pointer.
* If 'dstrect' is NULL, the whole surface will be filled with 'color'
* The color should be a pixel of the format used by the surface, and
* can be generated by the SDL_MapRGB() function.
* This function returns 0 on success, or -1 on error.
*/
Apr 11, 2002
Apr 11, 2002
767
extern DECLSPEC int SDLCALL SDL_FillRect
Apr 26, 2001
Apr 26, 2001
768
769
(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
Sep 21, 2009
Sep 21, 2009
770
/**
Apr 26, 2001
Apr 26, 2001
771
772
773
774
775
776
777
778
779
780
* This function takes a surface and copies it to a new surface of the
* pixel format and colors of the video framebuffer, suitable for fast
* blitting onto the display surface. It calls SDL_ConvertSurface()
*
* If you want to take advantage of hardware colorkey or alpha blit
* acceleration, you should set the colorkey and alpha value before
* calling this function.
*
* If the conversion fails or runs out of memory, it returns NULL
*/
Apr 11, 2002
Apr 11, 2002
781
extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormat(SDL_Surface *surface);
Apr 26, 2001
Apr 26, 2001
782
Sep 21, 2009
Sep 21, 2009
783
/**
Apr 26, 2001
Apr 26, 2001
784
785
786
787
788
789
790
791
792
793
794
* This function takes a surface and copies it to a new surface of the
* pixel format and colors of the video framebuffer (if possible),
* suitable for fast alpha blitting onto the display surface.
* The new surface will always have an alpha channel.
*
* If you want to take advantage of hardware colorkey or alpha blit
* acceleration, you should set the colorkey and alpha value before
* calling this function.
*
* If the conversion fails or runs out of memory, it returns NULL
*/
Apr 11, 2002
Apr 11, 2002
795
extern DECLSPEC SDL_Surface * SDLCALL SDL_DisplayFormatAlpha(SDL_Surface *surface);
Apr 26, 2001
Apr 26, 2001
796
797
798
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
799
/** @name YUV video surface overlay functions */ /*@{*/
Apr 26, 2001
Apr 26, 2001
800
801
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
802
803
804
805
806
/** This function creates a video output overlay
* Calling the returned surface an overlay is something of a misnomer because
* the contents of the display surface underneath the area where the overlay
* is shown is undefined - it may be overwritten with the converted YUV data.
*/
Apr 11, 2002
Apr 11, 2002
807
extern DECLSPEC SDL_Overlay * SDLCALL SDL_CreateYUVOverlay(int width, int height,
Apr 26, 2001
Apr 26, 2001
808
809
Uint32 format, SDL_Surface *display);
Sep 21, 2009
Sep 21, 2009
810
/** Lock an overlay for direct access, and unlock it when you are done */
Apr 11, 2002
Apr 11, 2002
811
812
extern DECLSPEC int SDLCALL SDL_LockYUVOverlay(SDL_Overlay *overlay);
extern DECLSPEC void SDLCALL SDL_UnlockYUVOverlay(SDL_Overlay *overlay);
Apr 26, 2001
Apr 26, 2001
813
Sep 21, 2009
Sep 21, 2009
814
815
816
817
818
819
/** Blit a video overlay to the display surface.
* The contents of the video surface underneath the blit destination are
* not defined.
* The width and height of the destination rectangle may be different from
* that of the overlay, but currently only 2x scaling is supported.
*/
Apr 11, 2002
Apr 11, 2002
820
extern DECLSPEC int SDLCALL SDL_DisplayYUVOverlay(SDL_Overlay *overlay, SDL_Rect *dstrect);
Apr 26, 2001
Apr 26, 2001
821
Sep 21, 2009
Sep 21, 2009
822
/** Free a video overlay */
Apr 11, 2002
Apr 11, 2002
823
extern DECLSPEC void SDLCALL SDL_FreeYUVOverlay(SDL_Overlay *overlay);
Apr 26, 2001
Apr 26, 2001
824
Sep 21, 2009
Sep 21, 2009
825
/*@}*/
Apr 26, 2001
Apr 26, 2001
826
827
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
828
/** @name OpenGL support functions. */ /*@{*/
Apr 26, 2001
Apr 26, 2001
829
830
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
831
/**
Mar 9, 2006
Mar 9, 2006
832
* Dynamically load an OpenGL library, or the default one if path is NULL
Apr 26, 2001
Apr 26, 2001
833
834
835
836
*
* If you do this, you need to retrieve all of the GL functions used in
* your program from the dynamic library using SDL_GL_GetProcAddress().
*/
Apr 11, 2002
Apr 11, 2002
837
extern DECLSPEC int SDLCALL SDL_GL_LoadLibrary(const char *path);
Apr 26, 2001
Apr 26, 2001
838
Sep 21, 2009
Sep 21, 2009
839
/**
Mar 9, 2006
Mar 9, 2006
840
* Get the address of a GL function
Apr 26, 2001
Apr 26, 2001
841
*/
Apr 11, 2002
Apr 11, 2002
842
extern DECLSPEC void * SDLCALL SDL_GL_GetProcAddress(const char* proc);
Apr 26, 2001
Apr 26, 2001
843
Sep 21, 2009
Sep 21, 2009
844
/**
Apr 26, 2001
Apr 26, 2001
845
846
* Set an attribute of the OpenGL subsystem before intialization.
*/
Apr 11, 2002
Apr 11, 2002
847
extern DECLSPEC int SDLCALL SDL_GL_SetAttribute(SDL_GLattr attr, int value);
Apr 26, 2001
Apr 26, 2001
848
Sep 21, 2009
Sep 21, 2009
849
/**
Apr 26, 2001
Apr 26, 2001
850
851
852
853
854
855
856
857
* Get an attribute of the OpenGL subsystem from the windowing
* interface, such as glX. This is of course different from getting
* the values from SDL's internal OpenGL subsystem, which only
* stores the values you request before initialization.
*
* Developers should track the values they pass into SDL_GL_SetAttribute
* themselves if they want to retrieve these values.
*/
Apr 11, 2002
Apr 11, 2002
858
extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int* value);
Apr 26, 2001
Apr 26, 2001
859
Sep 21, 2009
Sep 21, 2009
860
/**
Apr 26, 2001
Apr 26, 2001
861
862
* Swap the OpenGL buffers, if double-buffering is supported.
*/
Apr 11, 2002
Apr 11, 2002
863
extern DECLSPEC void SDLCALL SDL_GL_SwapBuffers(void);
Apr 26, 2001
Apr 26, 2001
864
Sep 21, 2009
Sep 21, 2009
865
/** @name OpenGL Internal Functions
Apr 26, 2001
Apr 26, 2001
866
867
868
* Internal functions that should not be called unless you have read
* and understood the source code for these functions.
*/
Sep 21, 2009
Sep 21, 2009
869
/*@{*/
Apr 11, 2002
Apr 11, 2002
870
871
872
extern DECLSPEC void SDLCALL SDL_GL_UpdateRects(int numrects, SDL_Rect* rects);
extern DECLSPEC void SDLCALL SDL_GL_Lock(void);
extern DECLSPEC void SDLCALL SDL_GL_Unlock(void);
Sep 21, 2009
Sep 21, 2009
873
874
875
/*@}*/
/*@}*/
Apr 26, 2001
Apr 26, 2001
876
877
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
878
879
/** @name Window Manager Functions */
/** These functions allow interaction with the window manager, if any. */ /*@{*/
Apr 26, 2001
Apr 26, 2001
880
881
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Sep 21, 2009
Sep 21, 2009
882
883
/**
* Sets the title and icon text of the display window (UTF-8 encoded)
Apr 26, 2001
Apr 26, 2001
884
*/
Apr 11, 2002
Apr 11, 2002
885
extern DECLSPEC void SDLCALL SDL_WM_SetCaption(const char *title, const char *icon);
Sep 21, 2009
Sep 21, 2009
886
887
888
/**
* Gets the title and icon text of the display window (UTF-8 encoded)
*/
Apr 11, 2002
Apr 11, 2002
889
extern DECLSPEC void SDLCALL SDL_WM_GetCaption(char **title, char **icon);
Apr 26, 2001
Apr 26, 2001
890
Sep 21, 2009
Sep 21, 2009
891
/**
Apr 26, 2001
Apr 26, 2001
892
893
894
895
896
* Sets the icon for the display window.
* This function must be called before the first call to SDL_SetVideoMode().
* It takes an icon surface, and a mask in MSB format.
* If 'mask' is NULL, the entire icon surface will be used as the icon.
*/
Apr 11, 2002
Apr 11, 2002
897
extern DECLSPEC void SDLCALL SDL_WM_SetIcon(SDL_Surface *icon, Uint8 *mask);
Apr 26, 2001
Apr 26, 2001
898
Sep 21, 2009
Sep 21, 2009
899
/**
Apr 26, 2001
Apr 26, 2001
900
901
902
903
* This function iconifies the window, and returns 1 if it succeeded.
* If the function succeeds, it generates an SDL_APPACTIVE loss event.
* This function is a noop and returns 0 in non-windowed environments.
*/
Apr 11, 2002
Apr 11, 2002
904
extern DECLSPEC int SDLCALL SDL_WM_IconifyWindow(void);
Apr 26, 2001
Apr 26, 2001
905
Sep 21, 2009
Sep 21, 2009
906
/**
Apr 26, 2001
Apr 26, 2001
907
908
909
910
911
912
913
914
915
916
917
918
919
920
* Toggle fullscreen mode without changing the contents of the screen.
* If the display surface does not require locking before accessing
* the pixel information, then the memory pointers will not change.
*
* If this function was able to toggle fullscreen mode (change from
* running in a window to fullscreen, or vice-versa), it will return 1.
* If it is not implemented, or fails, it returns 0.
*
* The next call to SDL_SetVideoMode() will set the mode fullscreen
* attribute based on the flags parameter - if SDL_FULLSCREEN is not
* set, then the display will be windowed by default where supported.
*
* This is currently only implemented in the X11 video driver.
*/
Apr 11, 2002
Apr 11, 2002
921
extern DECLSPEC int SDLCALL SDL_WM_ToggleFullScreen(SDL_Surface *surface);
Apr 26, 2001
Apr 26, 2001
922
923
924
925
926
typedef enum {
SDL_GRAB_QUERY = -1,
SDL_GRAB_OFF = 0,
SDL_GRAB_ON = 1,
Sep 21, 2009
Sep 21, 2009
927
SDL_GRAB_FULLSCREEN /**< Used internally */
Apr 26, 2001
Apr 26, 2001
928
} SDL_GrabMode;
Sep 21, 2009
Sep 21, 2009
929
930
931
932
/**
* This function allows you to set and query the input grab state of
* the application. It returns the new input grab state.
*
Apr 26, 2001
Apr 26, 2001
933
934
935
936
* Grabbing means that the mouse is confined to the application window,
* and nearly all keyboard input is passed directly to the application,
* and not interpreted by a window manager, if any.
*/
Apr 11, 2002
Apr 11, 2002
937
extern DECLSPEC SDL_GrabMode SDLCALL SDL_WM_GrabInput(SDL_GrabMode mode);
Apr 26, 2001
Apr 26, 2001
938
Sep 21, 2009
Sep 21, 2009
939
940
941
/*@}*/
/** @internal Not in public API at the moment - do not use! */
Apr 11, 2002
Apr 11, 2002
942
extern DECLSPEC int SDLCALL SDL_SoftStretch(SDL_Surface *src, SDL_Rect *srcrect,
Jun 7, 2001
Jun 7, 2001
943
944
SDL_Surface *dst, SDL_Rect *dstrect);
Apr 26, 2001
Apr 26, 2001
945
946
947
948
949
950
951
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif /* _SDL_video_h */