Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
505 lines (453 loc) · 17.9 KB

SDL_surface.h

File metadata and controls

505 lines (453 loc) · 17.9 KB
 
1
2
/*
Simple DirectMedia Layer
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/**
* \file SDL_surface.h
May 18, 2013
May 18, 2013
24
*
Jun 5, 2013
Jun 5, 2013
25
* Header file for ::SDL_Surface definition and management functions.
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
*/
#ifndef _SDL_surface_h
#define _SDL_surface_h
#include "SDL_stdinc.h"
#include "SDL_pixels.h"
#include "SDL_rect.h"
#include "SDL_blendmode.h"
#include "SDL_rwops.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif
/**
* \name Surface flags
May 18, 2013
May 18, 2013
45
*
Jun 5, 2013
Jun 5, 2013
46
* These are the currently supported flags for the ::SDL_Surface.
May 18, 2013
May 18, 2013
47
*
48
49
50
51
52
53
54
55
56
57
58
59
60
* \internal
* Used internally (read-only).
*/
/*@{*/
#define SDL_SWSURFACE 0 /**< Just here for compatibility */
#define SDL_PREALLOC 0x00000001 /**< Surface uses preallocated memory */
#define SDL_RLEACCEL 0x00000002 /**< Surface is RLE encoded */
#define SDL_DONTFREE 0x00000004 /**< Surface is referenced internally */
/*@}*//*Surface flags*/
/**
* Evaluates to true if the surface needs to be locked before access.
*/
May 18, 2013
May 18, 2013
61
#define SDL_MUSTLOCK(S) (((S)->flags & SDL_RLEACCEL) != 0)
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
* \brief A collection of pixels used in software blitting.
*
* \note This structure should be treated as read-only, except for \c pixels,
* which, if not NULL, contains the raw pixel data for the surface.
*/
typedef struct SDL_Surface
{
Uint32 flags; /**< Read-only */
SDL_PixelFormat *format; /**< Read-only */
int w, h; /**< Read-only */
int pitch; /**< Read-only */
void *pixels; /**< Read-write */
/** Application data associated with the surface */
void *userdata; /**< Read-write */
/** information needed for surfaces requiring locks */
int locked; /**< Read-only */
void *lock_data; /**< Read-only */
/** clipping information */
SDL_Rect clip_rect; /**< Read-only */
/** info for fast blit mapping to other surfaces */
struct SDL_BlitMap *map; /**< Private */
/** Reference count -- used when freeing surface */
int refcount; /**< Read-mostly */
} SDL_Surface;
/**
* \brief The type of function used for surface blitting functions.
*/
typedef int (*SDL_blit) (struct SDL_Surface * src, SDL_Rect * srcrect,
struct SDL_Surface * dst, SDL_Rect * dstrect);
/**
* Allocate and free an RGB surface.
May 18, 2013
May 18, 2013
102
*
103
104
105
* 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'.
May 18, 2013
May 18, 2013
106
*
107
* If the function runs out of memory, it will return NULL.
May 18, 2013
May 18, 2013
108
*
109
* \param flags The \c flags are obsolete and should be set to 0.
May 18, 2013
May 18, 2013
110
111
112
113
114
115
116
* \param width The width in pixels of the surface to create.
* \param height The height in pixels of the surface to create.
* \param depth The depth in bits of the surface to create.
* \param Rmask The red mask of the surface to create.
* \param Gmask The green mask of the surface to create.
* \param Bmask The blue mask of the surface to create.
* \param Amask The alpha mask of the surface to create.
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
*/
extern DECLSPEC SDL_Surface *SDLCALL SDL_CreateRGBSurface
(Uint32 flags, int width, int height, int depth,
Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask);
extern DECLSPEC SDL_Surface *SDLCALL SDL_CreateRGBSurfaceFrom(void *pixels,
int width,
int height,
int depth,
int pitch,
Uint32 Rmask,
Uint32 Gmask,
Uint32 Bmask,
Uint32 Amask);
extern DECLSPEC void SDLCALL SDL_FreeSurface(SDL_Surface * surface);
/**
* \brief Set the palette used by a surface.
May 18, 2013
May 18, 2013
134
*
135
* \return 0, or -1 if the surface format doesn't use a palette.
May 18, 2013
May 18, 2013
136
*
137
138
139
140
141
142
143
* \note A single palette can be shared with many surfaces.
*/
extern DECLSPEC int SDLCALL SDL_SetSurfacePalette(SDL_Surface * surface,
SDL_Palette * palette);
/**
* \brief Sets up a surface for directly accessing the pixels.
May 18, 2013
May 18, 2013
144
*
145
* Between calls to SDL_LockSurface() / SDL_UnlockSurface(), you can write
May 18, 2013
May 18, 2013
146
147
* to and read from \c surface->pixels, using the pixel format stored in
* \c surface->format. Once you are done accessing the surface, you should
148
* use SDL_UnlockSurface() to release it.
May 18, 2013
May 18, 2013
149
*
150
151
152
* 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.
May 18, 2013
May 18, 2013
153
*
154
155
* No operating system or library calls should be made between lock/unlock
* pairs, as critical system locks may be held during this time.
May 18, 2013
May 18, 2013
156
*
157
* SDL_LockSurface() returns 0, or -1 if the surface couldn't be locked.
May 18, 2013
May 18, 2013
158
*
159
160
161
162
163
164
165
166
* \sa SDL_UnlockSurface()
*/
extern DECLSPEC int SDLCALL SDL_LockSurface(SDL_Surface * surface);
/** \sa SDL_LockSurface() */
extern DECLSPEC void SDLCALL SDL_UnlockSurface(SDL_Surface * surface);
/**
* Load a surface from a seekable SDL data stream (memory or file).
May 18, 2013
May 18, 2013
167
*
168
* If \c freesrc is non-zero, the stream will be closed after being read.
May 18, 2013
May 18, 2013
169
*
170
* The new surface should be freed with SDL_FreeSurface().
May 18, 2013
May 18, 2013
171
*
172
173
174
175
176
177
178
* \return the new surface, or NULL if there was an error.
*/
extern DECLSPEC SDL_Surface *SDLCALL SDL_LoadBMP_RW(SDL_RWops * src,
int freesrc);
/**
* Load a surface from a file.
May 18, 2013
May 18, 2013
179
*
180
181
* Convenience macro.
*/
May 18, 2013
May 18, 2013
182
#define SDL_LoadBMP(file) SDL_LoadBMP_RW(SDL_RWFromFile(file, "rb"), 1)
183
184
185
/**
* Save a surface to a seekable SDL data stream (memory or file).
May 18, 2013
May 18, 2013
186
*
187
* If \c freedst is non-zero, the stream will be closed after being written.
May 18, 2013
May 18, 2013
188
*
189
190
191
192
193
* \return 0 if successful or -1 if there was an error.
*/
extern DECLSPEC int SDLCALL SDL_SaveBMP_RW
(SDL_Surface * surface, SDL_RWops * dst, int freedst);
May 18, 2013
May 18, 2013
194
/**
195
* Save a surface to a file.
May 18, 2013
May 18, 2013
196
*
197
198
199
* Convenience macro.
*/
#define SDL_SaveBMP(surface, file) \
May 18, 2013
May 18, 2013
200
SDL_SaveBMP_RW(surface, SDL_RWFromFile(file, "wb"), 1)
201
202
203
/**
* \brief Sets the RLE acceleration hint for a surface.
May 18, 2013
May 18, 2013
204
*
205
* \return 0 on success, or -1 if the surface is not valid
May 18, 2013
May 18, 2013
206
*
207
208
209
210
211
212
213
214
* \note If RLE is enabled, colorkey and alpha blending blits are much faster,
* but the surface must be locked before directly accessing the pixels.
*/
extern DECLSPEC int SDLCALL SDL_SetSurfaceRLE(SDL_Surface * surface,
int flag);
/**
* \brief Sets the color key (transparent pixel) in a blittable surface.
May 18, 2013
May 18, 2013
215
*
216
217
218
* \param surface The surface to update
* \param flag Non-zero to enable colorkey and 0 to disable colorkey
* \param key The transparent pixel in the native surface format
May 18, 2013
May 18, 2013
219
*
220
221
222
223
224
225
226
227
228
* \return 0 on success, or -1 if the surface is not valid
*
* You can pass SDL_RLEACCEL to enable RLE accelerated blits.
*/
extern DECLSPEC int SDLCALL SDL_SetColorKey(SDL_Surface * surface,
int flag, Uint32 key);
/**
* \brief Gets the color key (transparent pixel) in a blittable surface.
May 18, 2013
May 18, 2013
229
*
230
* \param surface The surface to update
May 18, 2013
May 18, 2013
231
* \param key A pointer filled in with the transparent pixel in the native
May 18, 2013
May 18, 2013
233
234
*
* \return 0 on success, or -1 if the surface is not valid or colorkey is not
235
236
237
238
239
240
241
* enabled.
*/
extern DECLSPEC int SDLCALL SDL_GetColorKey(SDL_Surface * surface,
Uint32 * key);
/**
* \brief Set an additional color value used in blit operations.
May 18, 2013
May 18, 2013
242
*
243
244
245
246
* \param surface The surface to update.
* \param r The red color value multiplied into blit operations.
* \param g The green color value multiplied into blit operations.
* \param b The blue color value multiplied into blit operations.
May 18, 2013
May 18, 2013
247
*
248
* \return 0 on success, or -1 if the surface is not valid.
May 18, 2013
May 18, 2013
249
*
250
251
252
253
254
255
256
257
* \sa SDL_GetSurfaceColorMod()
*/
extern DECLSPEC int SDLCALL SDL_SetSurfaceColorMod(SDL_Surface * surface,
Uint8 r, Uint8 g, Uint8 b);
/**
* \brief Get the additional color value used in blit operations.
May 18, 2013
May 18, 2013
258
*
259
260
261
262
* \param surface The surface to query.
* \param r A pointer filled in with the current red color value.
* \param g A pointer filled in with the current green color value.
* \param b A pointer filled in with the current blue color value.
May 18, 2013
May 18, 2013
263
*
264
* \return 0 on success, or -1 if the surface is not valid.
May 18, 2013
May 18, 2013
265
*
266
267
268
269
270
271
272
273
* \sa SDL_SetSurfaceColorMod()
*/
extern DECLSPEC int SDLCALL SDL_GetSurfaceColorMod(SDL_Surface * surface,
Uint8 * r, Uint8 * g,
Uint8 * b);
/**
* \brief Set an additional alpha value used in blit operations.
May 18, 2013
May 18, 2013
274
*
275
276
* \param surface The surface to update.
* \param alpha The alpha value multiplied into blit operations.
May 18, 2013
May 18, 2013
277
*
278
* \return 0 on success, or -1 if the surface is not valid.
May 18, 2013
May 18, 2013
279
*
280
281
282
283
284
285
286
* \sa SDL_GetSurfaceAlphaMod()
*/
extern DECLSPEC int SDLCALL SDL_SetSurfaceAlphaMod(SDL_Surface * surface,
Uint8 alpha);
/**
* \brief Get the additional alpha value used in blit operations.
May 18, 2013
May 18, 2013
287
*
288
289
* \param surface The surface to query.
* \param alpha A pointer filled in with the current alpha value.
May 18, 2013
May 18, 2013
290
*
291
* \return 0 on success, or -1 if the surface is not valid.
May 18, 2013
May 18, 2013
292
*
293
294
295
296
297
298
299
* \sa SDL_SetSurfaceAlphaMod()
*/
extern DECLSPEC int SDLCALL SDL_GetSurfaceAlphaMod(SDL_Surface * surface,
Uint8 * alpha);
/**
* \brief Set the blend mode used for blit operations.
May 18, 2013
May 18, 2013
300
*
301
302
* \param surface The surface to update.
* \param blendMode ::SDL_BlendMode to use for blit blending.
May 18, 2013
May 18, 2013
303
*
304
* \return 0 on success, or -1 if the parameters are not valid.
May 18, 2013
May 18, 2013
305
*
306
307
308
309
310
311
312
* \sa SDL_GetSurfaceBlendMode()
*/
extern DECLSPEC int SDLCALL SDL_SetSurfaceBlendMode(SDL_Surface * surface,
SDL_BlendMode blendMode);
/**
* \brief Get the blend mode used for blit operations.
May 18, 2013
May 18, 2013
313
*
314
315
* \param surface The surface to query.
* \param blendMode A pointer filled in with the current blend mode.
May 18, 2013
May 18, 2013
316
*
317
* \return 0 on success, or -1 if the surface is not valid.
May 18, 2013
May 18, 2013
318
*
319
320
321
322
323
324
325
* \sa SDL_SetSurfaceBlendMode()
*/
extern DECLSPEC int SDLCALL SDL_GetSurfaceBlendMode(SDL_Surface * surface,
SDL_BlendMode *blendMode);
/**
* Sets the clipping rectangle for the destination surface in a blit.
May 18, 2013
May 18, 2013
326
*
327
* If the clip rectangle is NULL, clipping will be disabled.
May 18, 2013
May 18, 2013
328
*
329
330
331
332
* 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.
May 18, 2013
May 18, 2013
333
*
334
335
336
337
338
339
340
341
* Note that blits are automatically clipped to the edges of the source
* and destination surfaces.
*/
extern DECLSPEC SDL_bool SDLCALL SDL_SetClipRect(SDL_Surface * surface,
const SDL_Rect * rect);
/**
* Gets the clipping rectangle for the destination surface in a blit.
May 18, 2013
May 18, 2013
342
*
343
344
345
346
347
348
349
* \c rect must be a pointer to a valid rectangle which will be filled
* with the correct values.
*/
extern DECLSPEC void SDLCALL SDL_GetClipRect(SDL_Surface * surface,
SDL_Rect * rect);
/**
May 18, 2013
May 18, 2013
350
351
* 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
352
* fast as possible. If this function fails, it returns NULL.
May 18, 2013
May 18, 2013
353
354
*
* The \c flags parameter is passed to SDL_CreateRGBSurface() and has those
355
356
357
358
359
360
361
362
363
364
365
* 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.
*/
extern DECLSPEC SDL_Surface *SDLCALL SDL_ConvertSurface
(SDL_Surface * src, SDL_PixelFormat * fmt, Uint32 flags);
extern DECLSPEC SDL_Surface *SDLCALL SDL_ConvertSurfaceFormat
(SDL_Surface * src, Uint32 pixel_format, Uint32 flags);
/**
* \brief Copy a block of pixels of one format to another format
May 18, 2013
May 18, 2013
366
*
367
368
369
370
371
372
373
374
375
376
* \return 0 on success, or -1 if there was an error
*/
extern DECLSPEC int SDLCALL SDL_ConvertPixels(int width, int height,
Uint32 src_format,
const void * src, int src_pitch,
Uint32 dst_format,
void * dst, int dst_pitch);
/**
* Performs a fast fill of the given rectangle with \c color.
May 18, 2013
May 18, 2013
377
*
378
* If \c rect is NULL, the whole surface will be filled with \c color.
May 18, 2013
May 18, 2013
379
380
*
* The color should be a pixel of the format used by the surface, and
381
* can be generated by the SDL_MapRGB() function.
May 18, 2013
May 18, 2013
382
*
383
384
385
386
387
388
389
390
391
* \return 0 on success, or -1 on error.
*/
extern DECLSPEC int SDLCALL SDL_FillRect
(SDL_Surface * dst, const SDL_Rect * rect, Uint32 color);
extern DECLSPEC int SDLCALL SDL_FillRects
(SDL_Surface * dst, const SDL_Rect * rects, int count, Uint32 color);
/**
* Performs a fast blit from the source surface to the destination surface.
May 18, 2013
May 18, 2013
392
*
393
394
395
396
* This assumes that the source and destination rectangles are
* the same size. If either \c srcrect or \c dstrect are NULL, the entire
* surface (\c src or \c dst) is copied. The final blit rectangles are saved
* in \c srcrect and \c dstrect after all clipping is performed.
May 18, 2013
May 18, 2013
397
*
398
399
400
401
402
403
404
405
406
407
408
409
410
411
* \return 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:
* \verbatim
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
Apr 27, 2013
Apr 27, 2013
412
RGB values of the source color key, ignoring alpha in the
May 18, 2013
May 18, 2013
414
415
416
417
418
419
420
421
422
RGB->RGBA:
SDL_SRCALPHA set:
alpha-blend (using the source per-surface alpha value);
set destination alpha to opaque.
SDL_SRCALPHA not set:
copy RGB, set destination alpha to source per-surface alpha value.
both:
if SDL_SRCCOLORKEY set, only copy the pixels matching the
Apr 27, 2013
Apr 27, 2013
423
source color key.
May 18, 2013
May 18, 2013
424
425
426
427
428
429
430
431
432
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
Apr 27, 2013
Apr 27, 2013
433
RGB values of the source color key, ignoring alpha in the
May 18, 2013
May 18, 2013
435
436
RGB->RGB:
437
438
439
440
441
442
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
Apr 27, 2013
Apr 27, 2013
443
source color key.
May 18, 2013
May 18, 2013
445
*
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
* You should call SDL_BlitSurface() unless you know exactly how SDL
* blitting works internally and how to use the other blit functions.
*/
#define SDL_BlitSurface SDL_UpperBlit
/**
* This is the public blit function, SDL_BlitSurface(), and it performs
* rectangle validation and clipping before passing it to SDL_LowerBlit()
*/
extern DECLSPEC int SDLCALL SDL_UpperBlit
(SDL_Surface * src, const SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect);
/**
* This is a semi-private blit function and it performs low-level surface
* blitting only.
*/
extern DECLSPEC int SDLCALL SDL_LowerBlit
(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect);
/**
* \brief Perform a fast, low quality, stretch blit between two surfaces of the
* same pixel format.
May 18, 2013
May 18, 2013
470
*
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
* \note This function uses a static buffer, and is not thread-safe.
*/
extern DECLSPEC int SDLCALL SDL_SoftStretch(SDL_Surface * src,
const SDL_Rect * srcrect,
SDL_Surface * dst,
const SDL_Rect * dstrect);
#define SDL_BlitScaled SDL_UpperBlitScaled
/**
* This is the public scaled blit function, SDL_BlitScaled(), and it performs
* rectangle validation and clipping before passing it to SDL_LowerBlitScaled()
*/
extern DECLSPEC int SDLCALL SDL_UpperBlitScaled
(SDL_Surface * src, const SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect);
/**
* This is a semi-private blit function and it performs low-level surface
* scaled blitting only.
*/
extern DECLSPEC int SDLCALL SDL_LowerBlitScaled
(SDL_Surface * src, SDL_Rect * srcrect,
SDL_Surface * dst, SDL_Rect * dstrect);
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"
#endif /* _SDL_surface_h */
/* vi: set ts=4 sw=4 expandtab: */