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

Latest commit

 

History

History
executable file
·
1044 lines (952 loc) · 28.7 KB

SDL_pixels.c

File metadata and controls

executable file
·
1044 lines (952 loc) · 28.7 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 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
*/
Feb 21, 2006
Feb 21, 2006
22
#include "SDL_config.h"
Apr 26, 2001
Apr 26, 2001
23
24
25
26
27
28
29
30
31
32
/* General (mostly internal) pixel/color manipulation routines for SDL */
#include "SDL_endian.h"
#include "SDL_video.h"
#include "SDL_sysvideo.h"
#include "SDL_blit.h"
#include "SDL_pixels_c.h"
#include "SDL_RLEaccel_c.h"
Dec 13, 2009
Dec 13, 2009
33
Mar 7, 2011
Mar 7, 2011
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Lookup tables to expand partial bytes to the full 0..255 range */
static Uint8 lookup_0[] = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 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, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 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, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255
};
static Uint8 lookup_1[] = {
0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 255
};
static Uint8 lookup_2[] = {
0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, 80, 85, 89, 93, 97, 101, 105, 109, 113, 117, 121, 125, 129, 133, 137, 141, 145, 149, 153, 157, 161, 165, 170, 174, 178, 182, 186, 190, 194, 198, 202, 206, 210, 214, 218, 222, 226, 230, 234, 238, 242, 246, 250, 255
};
static Uint8 lookup_3[] = {
0, 8, 16, 24, 32, 41, 49, 57, 65, 74, 82, 90, 98, 106, 115, 123, 131, 139, 148, 156, 164, 172, 180, 189, 197, 205, 213, 222, 230, 238, 246, 255
};
static Uint8 lookup_4[] = {
0, 17, 34, 51, 68, 85, 102, 119, 136, 153, 170, 187, 204, 221, 238, 255
};
static Uint8 lookup_5[] = {
0, 36, 72, 109, 145, 182, 218, 255
};
static Uint8 lookup_6[] = {
0, 85, 170, 255
};
static Uint8 lookup_7[] = {
0, 255
};
static Uint8 lookup_8[] = {
255
};
Uint8* SDL_expand_byte[9] = {
lookup_0,
lookup_1,
lookup_2,
lookup_3,
lookup_4,
lookup_5,
lookup_6,
lookup_7,
lookup_8
};
Apr 26, 2001
Apr 26, 2001
84
/* Helper functions */
Jul 10, 2006
Jul 10, 2006
85
Jan 12, 2011
Jan 12, 2011
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const char*
SDL_GetPixelFormatName(Uint32 format)
{
switch (format) {
#define CASE(X) case X: return #X;
CASE(SDL_PIXELFORMAT_INDEX1LSB)
CASE(SDL_PIXELFORMAT_INDEX1MSB)
CASE(SDL_PIXELFORMAT_INDEX4LSB)
CASE(SDL_PIXELFORMAT_INDEX4MSB)
CASE(SDL_PIXELFORMAT_INDEX8)
CASE(SDL_PIXELFORMAT_RGB332)
CASE(SDL_PIXELFORMAT_RGB444)
CASE(SDL_PIXELFORMAT_RGB555)
CASE(SDL_PIXELFORMAT_BGR555)
CASE(SDL_PIXELFORMAT_ARGB4444)
CASE(SDL_PIXELFORMAT_RGBA4444)
CASE(SDL_PIXELFORMAT_ABGR4444)
CASE(SDL_PIXELFORMAT_BGRA4444)
CASE(SDL_PIXELFORMAT_ARGB1555)
CASE(SDL_PIXELFORMAT_RGBA5551)
CASE(SDL_PIXELFORMAT_ABGR1555)
CASE(SDL_PIXELFORMAT_BGRA5551)
CASE(SDL_PIXELFORMAT_RGB565)
CASE(SDL_PIXELFORMAT_BGR565)
CASE(SDL_PIXELFORMAT_RGB24)
CASE(SDL_PIXELFORMAT_BGR24)
CASE(SDL_PIXELFORMAT_RGB888)
CASE(SDL_PIXELFORMAT_BGR888)
CASE(SDL_PIXELFORMAT_ARGB8888)
CASE(SDL_PIXELFORMAT_RGBA8888)
CASE(SDL_PIXELFORMAT_ABGR8888)
CASE(SDL_PIXELFORMAT_BGRA8888)
CASE(SDL_PIXELFORMAT_ARGB2101010)
CASE(SDL_PIXELFORMAT_YV12)
CASE(SDL_PIXELFORMAT_IYUV)
CASE(SDL_PIXELFORMAT_YUY2)
CASE(SDL_PIXELFORMAT_UYVY)
CASE(SDL_PIXELFORMAT_YVYU)
#undef CASE
default:
return "SDL_PIXELFORMAT_UNKNOWN";
}
}
Jul 10, 2006
Jul 10, 2006
130
131
132
133
134
135
SDL_bool
SDL_PixelFormatEnumToMasks(Uint32 format, int *bpp, Uint32 * Rmask,
Uint32 * Gmask, Uint32 * Bmask, Uint32 * Amask)
{
Uint32 masks[4];
Mar 7, 2011
Mar 7, 2011
136
137
/* This function doesn't work with FourCC pixel formats */
if (SDL_ISPIXELFORMAT_FOURCC(format)) {
Mar 7, 2011
Mar 7, 2011
138
SDL_SetError("FOURCC pixel formats are not supported");
Mar 7, 2011
Mar 7, 2011
139
140
141
return SDL_FALSE;
}
Jul 10, 2006
Jul 10, 2006
142
/* Initialize the values here */
Sep 20, 2009
Sep 20, 2009
143
if (SDL_BYTESPERPIXEL(format) <= 2) {
Jul 10, 2006
Jul 10, 2006
144
*bpp = SDL_BITSPERPIXEL(format);
Sep 20, 2009
Sep 20, 2009
145
146
} else {
*bpp = SDL_BYTESPERPIXEL(format) * 8;
Jul 10, 2006
Jul 10, 2006
147
148
149
}
*Rmask = *Gmask = *Bmask = *Amask = 0;
Dec 14, 2009
Dec 14, 2009
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
if (format == SDL_PIXELFORMAT_RGB24) {
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
*Rmask = 0x00FF0000;
*Gmask = 0x0000FF00;
*Bmask = 0x000000FF;
#else
*Rmask = 0x000000FF;
*Gmask = 0x0000FF00;
*Bmask = 0x00FF0000;
#endif
return SDL_TRUE;
}
if (format == SDL_PIXELFORMAT_BGR24) {
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
*Rmask = 0x000000FF;
*Gmask = 0x0000FF00;
*Bmask = 0x00FF0000;
#else
*Rmask = 0x00FF0000;
*Gmask = 0x0000FF00;
*Bmask = 0x000000FF;
#endif
return SDL_TRUE;
}
Aug 5, 2006
Aug 5, 2006
176
177
178
if (SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED8 &&
SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED16 &&
SDL_PIXELTYPE(format) != SDL_PIXELTYPE_PACKED32) {
Jul 10, 2006
Jul 10, 2006
179
180
181
182
183
/* Not a format that uses masks */
return SDL_TRUE;
}
switch (SDL_PIXELLAYOUT(format)) {
Aug 5, 2006
Aug 5, 2006
184
case SDL_PACKEDLAYOUT_332:
Jul 10, 2006
Jul 10, 2006
185
186
187
188
189
masks[0] = 0x00000000;
masks[1] = 0x000000E0;
masks[2] = 0x0000001C;
masks[3] = 0x00000003;
break;
Aug 5, 2006
Aug 5, 2006
190
case SDL_PACKEDLAYOUT_4444:
Jul 10, 2006
Jul 10, 2006
191
192
193
194
195
masks[0] = 0x0000F000;
masks[1] = 0x00000F00;
masks[2] = 0x000000F0;
masks[3] = 0x0000000F;
break;
Aug 5, 2006
Aug 5, 2006
196
case SDL_PACKEDLAYOUT_1555:
Jul 10, 2006
Jul 10, 2006
197
198
199
200
201
masks[0] = 0x00008000;
masks[1] = 0x00007C00;
masks[2] = 0x000003E0;
masks[3] = 0x0000001F;
break;
Jun 3, 2009
Jun 3, 2009
202
203
204
205
206
207
case SDL_PACKEDLAYOUT_5551:
masks[0] = 0x0000F800;
masks[1] = 0x000007C0;
masks[2] = 0x0000003E;
masks[3] = 0x00000001;
break;
Aug 5, 2006
Aug 5, 2006
208
case SDL_PACKEDLAYOUT_565:
Jul 10, 2006
Jul 10, 2006
209
210
211
212
213
masks[0] = 0x00000000;
masks[1] = 0x0000F800;
masks[2] = 0x000007E0;
masks[3] = 0x0000001F;
break;
Aug 5, 2006
Aug 5, 2006
214
case SDL_PACKEDLAYOUT_8888:
Jul 10, 2006
Jul 10, 2006
215
216
217
218
219
masks[0] = 0xFF000000;
masks[1] = 0x00FF0000;
masks[2] = 0x0000FF00;
masks[3] = 0x000000FF;
break;
Aug 5, 2006
Aug 5, 2006
220
case SDL_PACKEDLAYOUT_2101010:
Jul 10, 2006
Jul 10, 2006
221
222
223
224
225
masks[0] = 0xC0000000;
masks[1] = 0x3FF00000;
masks[2] = 0x000FFC00;
masks[3] = 0x000003FF;
break;
Jun 3, 2009
Jun 3, 2009
226
227
228
229
230
231
case SDL_PACKEDLAYOUT_1010102:
masks[0] = 0xFFC00000;
masks[1] = 0x003FF000;
masks[2] = 0x00000FFC;
masks[3] = 0x00000003;
break;
Jul 10, 2006
Jul 10, 2006
232
default:
Nov 22, 2009
Nov 22, 2009
233
SDL_SetError("Unknown pixel format");
Jul 10, 2006
Jul 10, 2006
234
235
236
237
return SDL_FALSE;
}
switch (SDL_PIXELORDER(format)) {
Aug 5, 2006
Aug 5, 2006
238
case SDL_PACKEDORDER_XRGB:
Jul 10, 2006
Jul 10, 2006
239
240
241
242
*Rmask = masks[1];
*Gmask = masks[2];
*Bmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
243
case SDL_PACKEDORDER_RGBX:
Jul 10, 2006
Jul 10, 2006
244
245
246
247
*Rmask = masks[0];
*Gmask = masks[1];
*Bmask = masks[2];
break;
Aug 5, 2006
Aug 5, 2006
248
case SDL_PACKEDORDER_ARGB:
Jul 10, 2006
Jul 10, 2006
249
250
251
252
253
*Amask = masks[0];
*Rmask = masks[1];
*Gmask = masks[2];
*Bmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
254
case SDL_PACKEDORDER_RGBA:
Jul 10, 2006
Jul 10, 2006
255
256
257
258
259
*Rmask = masks[0];
*Gmask = masks[1];
*Bmask = masks[2];
*Amask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
260
case SDL_PACKEDORDER_XBGR:
Jul 10, 2006
Jul 10, 2006
261
262
263
264
*Bmask = masks[1];
*Gmask = masks[2];
*Rmask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
265
case SDL_PACKEDORDER_BGRX:
Jul 10, 2006
Jul 10, 2006
266
267
268
269
*Bmask = masks[0];
*Gmask = masks[1];
*Rmask = masks[2];
break;
Aug 5, 2006
Aug 5, 2006
270
case SDL_PACKEDORDER_BGRA:
Jul 10, 2006
Jul 10, 2006
271
272
273
274
275
*Bmask = masks[0];
*Gmask = masks[1];
*Rmask = masks[2];
*Amask = masks[3];
break;
Aug 5, 2006
Aug 5, 2006
276
case SDL_PACKEDORDER_ABGR:
Jul 10, 2006
Jul 10, 2006
277
278
279
280
281
282
*Amask = masks[0];
*Bmask = masks[1];
*Gmask = masks[2];
*Rmask = masks[3];
break;
default:
Nov 22, 2009
Nov 22, 2009
283
SDL_SetError("Unknown pixel format");
Jul 10, 2006
Jul 10, 2006
284
285
286
287
288
289
290
291
292
293
return SDL_FALSE;
}
return SDL_TRUE;
}
Uint32
SDL_MasksToPixelFormatEnum(int bpp, Uint32 Rmask, Uint32 Gmask, Uint32 Bmask,
Uint32 Amask)
{
switch (bpp) {
Mar 7, 2011
Mar 7, 2011
294
case 1:
Mar 7, 2011
Mar 7, 2011
295
296
/* SDL defaults to MSB ordering */
return SDL_PIXELFORMAT_INDEX1MSB;
Mar 7, 2011
Mar 7, 2011
297
case 4:
Mar 7, 2011
Mar 7, 2011
298
299
/* SDL defaults to MSB ordering */
return SDL_PIXELFORMAT_INDEX4MSB;
Jul 10, 2006
Jul 10, 2006
300
case 8:
Feb 19, 2011
Feb 19, 2011
301
if (Rmask == 0) {
Aug 5, 2006
Aug 5, 2006
302
return SDL_PIXELFORMAT_INDEX8;
Feb 19, 2011
Feb 19, 2011
303
304
305
306
307
}
if (Rmask == 0xE0 &&
Gmask == 0x1C &&
Bmask == 0x03 &&
Amask == 0x00) {
Feb 20, 2011
Feb 20, 2011
308
return SDL_PIXELFORMAT_RGB332;
Jul 10, 2006
Jul 10, 2006
309
310
311
}
break;
case 12:
Feb 19, 2011
Feb 19, 2011
312
if (Rmask == 0) {
Feb 20, 2011
Feb 20, 2011
313
return SDL_PIXELFORMAT_RGB444;
Feb 19, 2011
Feb 19, 2011
314
315
316
317
318
}
if (Rmask == 0x0F00 &&
Gmask == 0x00F0 &&
Bmask == 0x000F &&
Amask == 0x0000) {
Feb 20, 2011
Feb 20, 2011
319
return SDL_PIXELFORMAT_RGB444;
Jul 10, 2006
Jul 10, 2006
320
321
322
}
break;
case 15:
Feb 13, 2011
Feb 13, 2011
323
324
325
if (Rmask == 0) {
return SDL_PIXELFORMAT_RGB555;
}
Feb 19, 2011
Feb 19, 2011
326
/* Fall through to 16-bit checks */
Jul 10, 2006
Jul 10, 2006
327
case 16:
Feb 19, 2011
Feb 19, 2011
328
if (Rmask == 0) {
Feb 13, 2011
Feb 13, 2011
329
return SDL_PIXELFORMAT_RGB565;
Feb 19, 2011
Feb 19, 2011
330
331
332
333
334
}
if (Rmask == 0x7C00 &&
Gmask == 0x03E0 &&
Bmask == 0x001F &&
Amask == 0x0000) {
Feb 20, 2011
Feb 20, 2011
335
return SDL_PIXELFORMAT_RGB555;
Feb 19, 2011
Feb 19, 2011
336
337
338
339
340
}
if (Rmask == 0x001F &&
Gmask == 0x03E0 &&
Bmask == 0x7C00 &&
Amask == 0x0000) {
Feb 20, 2011
Feb 20, 2011
341
return SDL_PIXELFORMAT_BGR555;
Feb 19, 2011
Feb 19, 2011
342
343
344
345
346
}
if (Rmask == 0x0F00 &&
Gmask == 0x00F0 &&
Bmask == 0x000F &&
Amask == 0xF000) {
Feb 20, 2011
Feb 20, 2011
347
return SDL_PIXELFORMAT_ARGB4444;
Feb 19, 2011
Feb 19, 2011
348
349
350
351
352
}
if (Rmask == 0xF000 &&
Gmask == 0x0F00 &&
Bmask == 0x00F0 &&
Amask == 0x000F) {
Feb 20, 2011
Feb 20, 2011
353
return SDL_PIXELFORMAT_RGBA4444;
Feb 19, 2011
Feb 19, 2011
354
355
356
357
358
}
if (Rmask == 0x000F &&
Gmask == 0x00F0 &&
Bmask == 0x0F00 &&
Amask == 0xF000) {
Feb 20, 2011
Feb 20, 2011
359
return SDL_PIXELFORMAT_ABGR4444;
Feb 19, 2011
Feb 19, 2011
360
361
362
363
364
}
if (Rmask == 0x00F0 &&
Gmask == 0x0F00 &&
Bmask == 0xF000 &&
Amask == 0x000F) {
Feb 20, 2011
Feb 20, 2011
365
return SDL_PIXELFORMAT_BGRA4444;
Feb 19, 2011
Feb 19, 2011
366
367
368
369
370
}
if (Rmask == 0x7C00 &&
Gmask == 0x03E0 &&
Bmask == 0x001F &&
Amask == 0x8000) {
Feb 20, 2011
Feb 20, 2011
371
return SDL_PIXELFORMAT_ARGB1555;
Feb 19, 2011
Feb 19, 2011
372
373
374
375
376
}
if (Rmask == 0xF800 &&
Gmask == 0x07C0 &&
Bmask == 0x003E &&
Amask == 0x0001) {
Feb 20, 2011
Feb 20, 2011
377
return SDL_PIXELFORMAT_RGBA5551;
Feb 19, 2011
Feb 19, 2011
378
379
380
381
382
}
if (Rmask == 0x001F &&
Gmask == 0x03E0 &&
Bmask == 0x7C00 &&
Amask == 0x8000) {
Feb 20, 2011
Feb 20, 2011
383
return SDL_PIXELFORMAT_ABGR1555;
Feb 19, 2011
Feb 19, 2011
384
385
386
387
388
}
if (Rmask == 0x003E &&
Gmask == 0x07C0 &&
Bmask == 0xF800 &&
Amask == 0x0001) {
Feb 20, 2011
Feb 20, 2011
389
return SDL_PIXELFORMAT_BGRA5551;
Feb 19, 2011
Feb 19, 2011
390
391
392
393
394
}
if (Rmask == 0xF800 &&
Gmask == 0x07E0 &&
Bmask == 0x001F &&
Amask == 0x0000) {
Feb 20, 2011
Feb 20, 2011
395
return SDL_PIXELFORMAT_RGB565;
Feb 19, 2011
Feb 19, 2011
396
397
398
399
400
}
if (Rmask == 0x001F &&
Gmask == 0x07E0 &&
Bmask == 0xF800 &&
Amask == 0x0000) {
Feb 20, 2011
Feb 20, 2011
401
return SDL_PIXELFORMAT_BGR565;
Jul 10, 2006
Jul 10, 2006
402
403
}
break;
Jun 10, 2009
Jun 10, 2009
404
405
case 24:
switch (Rmask) {
Feb 13, 2011
Feb 13, 2011
406
case 0:
Jun 10, 2009
Jun 10, 2009
407
case 0x00FF0000:
Dec 23, 2009
Dec 23, 2009
408
409
410
411
412
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
return SDL_PIXELFORMAT_RGB24;
#else
return SDL_PIXELFORMAT_BGR24;
#endif
Jun 10, 2009
Jun 10, 2009
413
case 0x000000FF:
Dec 23, 2009
Dec 23, 2009
414
415
416
417
418
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
return SDL_PIXELFORMAT_BGR24;
#else
return SDL_PIXELFORMAT_RGB24;
#endif
Jun 10, 2009
Jun 10, 2009
419
}
Jul 10, 2006
Jul 10, 2006
420
case 32:
Feb 19, 2011
Feb 19, 2011
421
422
423
424
425
426
427
if (Rmask == 0) {
return SDL_PIXELFORMAT_RGB888;
}
if (Rmask == 0x00FF0000 &&
Gmask == 0x0000FF00 &&
Bmask == 0x000000FF &&
Amask == 0x00000000) {
Feb 20, 2011
Feb 20, 2011
428
return SDL_PIXELFORMAT_RGB888;
Feb 19, 2011
Feb 19, 2011
429
430
431
432
433
}
if (Rmask == 0x000000FF &&
Gmask == 0x0000FF00 &&
Bmask == 0x00FF0000 &&
Amask == 0x00000000) {
Feb 20, 2011
Feb 20, 2011
434
return SDL_PIXELFORMAT_BGR888;
Feb 19, 2011
Feb 19, 2011
435
436
437
438
439
}
if (Rmask == 0x00FF0000 &&
Gmask == 0x0000FF00 &&
Bmask == 0x000000FF &&
Amask == 0xFF000000) {
Feb 20, 2011
Feb 20, 2011
440
return SDL_PIXELFORMAT_ARGB8888;
Feb 19, 2011
Feb 19, 2011
441
442
443
444
445
}
if (Rmask == 0xFF000000 &&
Gmask == 0x00FF0000 &&
Bmask == 0x0000FF00 &&
Amask == 0x000000FF) {
Feb 20, 2011
Feb 20, 2011
446
return SDL_PIXELFORMAT_RGBA8888;
Feb 19, 2011
Feb 19, 2011
447
448
449
450
451
}
if (Rmask == 0x000000FF &&
Gmask == 0x0000FF00 &&
Bmask == 0x00FF0000 &&
Amask == 0xFF000000) {
Feb 20, 2011
Feb 20, 2011
452
return SDL_PIXELFORMAT_ABGR8888;
Feb 19, 2011
Feb 19, 2011
453
454
455
456
457
}
if (Rmask == 0x0000FF00 &&
Gmask == 0x00FF0000 &&
Bmask == 0xFF000000 &&
Amask == 0x000000FF) {
Feb 20, 2011
Feb 20, 2011
458
return SDL_PIXELFORMAT_BGRA8888;
Feb 19, 2011
Feb 19, 2011
459
460
461
462
463
}
if (Rmask == 0x3FF00000 &&
Gmask == 0x000FFC00 &&
Bmask == 0x000003FF &&
Amask == 0xC0000000) {
Feb 20, 2011
Feb 20, 2011
464
return SDL_PIXELFORMAT_ARGB2101010;
Jul 10, 2006
Jul 10, 2006
465
466
}
}
Aug 5, 2006
Aug 5, 2006
467
return SDL_PIXELFORMAT_UNKNOWN;
Jul 10, 2006
Jul 10, 2006
468
469
}
Feb 13, 2011
Feb 13, 2011
470
static SDL_PixelFormat *formats;
Jul 10, 2006
Jul 10, 2006
471
Feb 13, 2011
Feb 13, 2011
472
473
SDL_PixelFormat *
SDL_AllocFormat(Uint32 pixel_format)
Jul 10, 2006
Jul 10, 2006
474
{
Feb 13, 2011
Feb 13, 2011
475
SDL_PixelFormat *format;
Jul 10, 2006
Jul 10, 2006
476
Feb 13, 2011
Feb 13, 2011
477
478
479
480
481
/* Look it up in our list of previously allocated formats */
for (format = formats; format; format = format->next) {
if (pixel_format == format->format) {
++format->refcount;
return format;
Jul 10, 2006
Jul 10, 2006
482
483
484
}
}
Feb 13, 2011
Feb 13, 2011
485
/* Allocate an empty pixel format structure, and initialize it */
Jan 2, 2009
Jan 2, 2009
486
format = SDL_malloc(sizeof(*format));
Jul 10, 2006
Jul 10, 2006
487
488
if (format == NULL) {
SDL_OutOfMemory();
Mar 7, 2011
Mar 7, 2011
489
490
491
492
493
return NULL;
}
if (SDL_InitFormat(format, pixel_format) < 0) {
SDL_free(format);
return NULL;
Jul 10, 2006
Jul 10, 2006
494
495
}
Feb 13, 2011
Feb 13, 2011
496
497
498
499
500
501
if (!SDL_ISPIXELFORMAT_INDEXED(pixel_format)) {
/* Cache the RGB formats */
format->next = formats;
formats = format;
}
return format;
Jan 2, 2009
Jan 2, 2009
502
503
}
Feb 13, 2011
Feb 13, 2011
504
505
int
SDL_InitFormat(SDL_PixelFormat * format, Uint32 pixel_format)
Jan 2, 2009
Jan 2, 2009
506
{
Mar 7, 2011
Mar 7, 2011
507
508
509
510
511
512
513
514
515
int bpp;
Uint32 Rmask, Gmask, Bmask, Amask;
Uint32 mask;
if (!SDL_PixelFormatEnumToMasks(pixel_format, &bpp,
&Rmask, &Gmask, &Bmask, &Amask)) {
return -1;
}
Jan 2, 2009
Jan 2, 2009
516
517
/* Set up the format */
SDL_zerop(format);
Feb 13, 2011
Feb 13, 2011
518
format->format = pixel_format;
Mar 7, 2011
Mar 7, 2011
519
520
521
522
523
524
525
526
527
528
529
530
format->BitsPerPixel = bpp;
format->BytesPerPixel = (bpp + 7) / 8;
format->Rmask = Rmask;
format->Rshift = 0;
format->Rloss = 8;
if (Rmask) {
for (mask = Rmask; !(mask & 0x01); mask >>= 1)
++format->Rshift;
for (; (mask & 0x01); mask >>= 1)
--format->Rloss;
}
Mar 7, 2011
Mar 7, 2011
531
Mar 7, 2011
Mar 7, 2011
532
533
534
535
536
537
538
539
format->Gmask = Gmask;
format->Gshift = 0;
format->Gloss = 8;
if (Gmask) {
for (mask = Gmask; !(mask & 0x01); mask >>= 1)
++format->Gshift;
for (; (mask & 0x01); mask >>= 1)
--format->Gloss;
Jul 10, 2006
Jul 10, 2006
540
}
Mar 7, 2011
Mar 7, 2011
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
format->Bmask = Bmask;
format->Bshift = 0;
format->Bloss = 8;
if (Bmask) {
for (mask = Bmask; !(mask & 0x01); mask >>= 1)
++format->Bshift;
for (; (mask & 0x01); mask >>= 1)
--format->Bloss;
}
format->Amask = Amask;
format->Ashift = 0;
format->Aloss = 8;
if (Amask) {
for (mask = Amask; !(mask & 0x01); mask >>= 1)
++format->Ashift;
for (; (mask & 0x01); mask >>= 1)
--format->Aloss;
}
Jul 10, 2006
Jul 10, 2006
562
format->palette = NULL;
Feb 13, 2011
Feb 13, 2011
563
564
format->refcount = 1;
format->next = NULL;
Jul 10, 2006
Jul 10, 2006
565
Feb 13, 2011
Feb 13, 2011
566
return 0;
Apr 26, 2001
Apr 26, 2001
567
568
}
Jul 10, 2006
Jul 10, 2006
569
void
Feb 13, 2011
Feb 13, 2011
570
SDL_FreeFormat(SDL_PixelFormat *format)
Apr 26, 2001
Apr 26, 2001
571
{
Feb 13, 2011
Feb 13, 2011
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
SDL_PixelFormat *prev;
if (!format) {
return;
}
if (--format->refcount > 0) {
return;
}
/* Remove this format from our list */
if (format == formats) {
formats = format->next;
} else if (formats) {
for (prev = formats; prev->next; prev = prev->next) {
if (prev->next == format) {
prev->next = format->next;
break;
}
}
}
if (format->palette) {
SDL_FreePalette(format->palette);
Jul 10, 2006
Jul 10, 2006
595
}
Feb 13, 2011
Feb 13, 2011
596
SDL_free(format);
Apr 26, 2001
Apr 26, 2001
597
}
Jul 10, 2006
Jul 10, 2006
598
Feb 13, 2011
Feb 13, 2011
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
SDL_Palette *
SDL_AllocPalette(int ncolors)
{
SDL_Palette *palette;
palette = (SDL_Palette *) SDL_malloc(sizeof(*palette));
if (!palette) {
SDL_OutOfMemory();
return NULL;
}
palette->colors =
(SDL_Color *) SDL_malloc(ncolors * sizeof(*palette->colors));
if (!palette->colors) {
SDL_free(palette);
return NULL;
}
palette->ncolors = ncolors;
palette->version = 1;
palette->refcount = 1;
SDL_memset(palette->colors, 0xFF, ncolors * sizeof(*palette->colors));
return palette;
}
int
SDL_SetPixelFormatPalette(SDL_PixelFormat * format, SDL_Palette *palette)
Apr 26, 2001
Apr 26, 2001
626
{
Jul 10, 2006
Jul 10, 2006
627
if (!format) {
Feb 13, 2011
Feb 13, 2011
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
SDL_SetError("SDL_SetPixelFormatPalette() passed NULL format");
return -1;
}
if (palette && palette->ncolors != (1 << format->BitsPerPixel)) {
SDL_SetError("SDL_SetPixelFormatPalette() passed a palette that doesn't match the format");
return -1;
}
if (format->palette == palette) {
return 0;
}
if (format->palette) {
SDL_FreePalette(format->palette);
}
format->palette = palette;
if (format->palette) {
++format->palette->refcount;
}
Feb 14, 2011
Feb 14, 2011
650
651
return 0;
Feb 13, 2011
Feb 13, 2011
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
}
int
SDL_SetPaletteColors(SDL_Palette * palette, const SDL_Color * colors,
int firstcolor, int ncolors)
{
int status = 0;
/* Verify the parameters */
if (!palette) {
return -1;
}
if (ncolors > (palette->ncolors - firstcolor)) {
ncolors = (palette->ncolors - firstcolor);
status = -1;
}
if (colors != (palette->colors + firstcolor)) {
SDL_memcpy(palette->colors + firstcolor, colors,
ncolors * sizeof(*colors));
}
++palette->version;
if (!palette->version) {
palette->version = 1;
}
return status;
}
void
SDL_FreePalette(SDL_Palette * palette)
{
if (!palette) {
Jul 10, 2006
Jul 10, 2006
685
686
return;
}
Feb 13, 2011
Feb 13, 2011
687
688
689
690
691
692
693
if (--palette->refcount > 0) {
return;
}
if (palette->colors) {
SDL_free(palette->colors);
}
SDL_free(palette);
Apr 26, 2001
Apr 26, 2001
694
}
Jul 10, 2006
Jul 10, 2006
695
Apr 26, 2001
Apr 26, 2001
696
697
698
/*
* Calculate an 8-bit (3 red, 3 green, 2 blue) dithered palette of colors
*/
Jul 10, 2006
Jul 10, 2006
699
700
void
SDL_DitherColors(SDL_Color * colors, int bpp)
Apr 26, 2001
Apr 26, 2001
701
{
Jul 10, 2006
Jul 10, 2006
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
int i;
if (bpp != 8)
return; /* only 8bpp supported right now */
for (i = 0; i < 256; i++) {
int r, g, b;
/* map each bit field to the full [0, 255] interval,
so 0 is mapped to (0, 0, 0) and 255 to (255, 255, 255) */
r = i & 0xe0;
r |= r >> 3 | r >> 6;
colors[i].r = r;
g = (i << 3) & 0xe0;
g |= g >> 3 | g >> 6;
colors[i].g = g;
b = i & 0x3;
b |= b << 2;
b |= b << 4;
colors[i].b = b;
colors[i].unused = SDL_ALPHA_OPAQUE;
}
Apr 26, 2001
Apr 26, 2001
722
}
Jul 10, 2006
Jul 10, 2006
723
Apr 26, 2001
Apr 26, 2001
724
725
726
/*
* Calculate the pad-aligned scanline width of a surface
*/
Jul 10, 2006
Jul 10, 2006
727
728
int
SDL_CalculatePitch(SDL_Surface * surface)
Apr 26, 2001
Apr 26, 2001
729
{
Jul 10, 2006
Jul 10, 2006
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
int pitch;
/* Surface should be 4-byte aligned for speed */
pitch = surface->w * surface->format->BytesPerPixel;
switch (surface->format->BitsPerPixel) {
case 1:
pitch = (pitch + 7) / 8;
break;
case 4:
pitch = (pitch + 1) / 2;
break;
default:
break;
}
pitch = (pitch + 3) & ~3; /* 4-byte aligning */
return (pitch);
Apr 26, 2001
Apr 26, 2001
746
}
Jul 10, 2006
Jul 10, 2006
747
Apr 26, 2001
Apr 26, 2001
748
749
750
/*
* Match an RGB value to a particular palette index
*/
Jul 10, 2006
Jul 10, 2006
751
752
Uint8
SDL_FindColor(SDL_Palette * pal, Uint8 r, Uint8 g, Uint8 b)
Apr 26, 2001
Apr 26, 2001
753
{
Jul 10, 2006
Jul 10, 2006
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
/* Do colorspace distance matching */
unsigned int smallest;
unsigned int distance;
int rd, gd, bd;
int i;
Uint8 pixel = 0;
smallest = ~0;
for (i = 0; i < pal->ncolors; ++i) {
rd = pal->colors[i].r - r;
gd = pal->colors[i].g - g;
bd = pal->colors[i].b - b;
distance = (rd * rd) + (gd * gd) + (bd * bd);
if (distance < smallest) {
pixel = i;
if (distance == 0) { /* Perfect match! */
break;
}
smallest = distance;
}
}
return (pixel);
Apr 26, 2001
Apr 26, 2001
776
777
778
}
/* Find the opaque pixel value corresponding to an RGB triple */
Jul 10, 2006
Jul 10, 2006
779
Uint32
Sep 10, 2007
Sep 10, 2007
780
SDL_MapRGB(const SDL_PixelFormat * format, Uint8 r, Uint8 g, Uint8 b)
Apr 26, 2001
Apr 26, 2001
781
{
Jul 10, 2006
Jul 10, 2006
782
783
784
785
786
787
788
if (format->palette == NULL) {
return (r >> format->Rloss) << format->Rshift
| (g >> format->Gloss) << format->Gshift
| (b >> format->Bloss) << format->Bshift | format->Amask;
} else {
return SDL_FindColor(format->palette, r, g, b);
}
Apr 26, 2001
Apr 26, 2001
789
790
791
}
/* Find the pixel value corresponding to an RGBA quadruple */
Jul 10, 2006
Jul 10, 2006
792
Uint32
Sep 10, 2007
Sep 10, 2007
793
794
SDL_MapRGBA(const SDL_PixelFormat * format, Uint8 r, Uint8 g, Uint8 b,
Uint8 a)
Apr 26, 2001
Apr 26, 2001
795
{
Jul 10, 2006
Jul 10, 2006
796
797
798
799
800
801
802
803
if (format->palette == NULL) {
return (r >> format->Rloss) << format->Rshift
| (g >> format->Gloss) << format->Gshift
| (b >> format->Bloss) << format->Bshift
| ((a >> format->Aloss) << format->Ashift & format->Amask);
} else {
return SDL_FindColor(format->palette, r, g, b);
}
Apr 26, 2001
Apr 26, 2001
804
805
}
Jul 10, 2006
Jul 10, 2006
806
void
Sep 10, 2007
Sep 10, 2007
807
808
SDL_GetRGB(Uint32 pixel, const SDL_PixelFormat * format, Uint8 * r, Uint8 * g,
Uint8 * b)
Apr 26, 2001
Apr 26, 2001
809
{
Sep 10, 2007
Sep 10, 2007
810
if (format->palette == NULL) {
Jul 10, 2006
Jul 10, 2006
811
unsigned v;
Sep 10, 2007
Sep 10, 2007
812
v = (pixel & format->Rmask) >> format->Rshift;
Mar 7, 2011
Mar 7, 2011
813
*r = SDL_expand_byte[format->Rloss][v];
Sep 10, 2007
Sep 10, 2007
814
v = (pixel & format->Gmask) >> format->Gshift;
Mar 7, 2011
Mar 7, 2011
815
*g = SDL_expand_byte[format->Gloss][v];
Sep 10, 2007
Sep 10, 2007
816
v = (pixel & format->Bmask) >> format->Bshift;
Mar 7, 2011
Mar 7, 2011
817
*b = SDL_expand_byte[format->Bloss][v];
Jul 10, 2006
Jul 10, 2006
818
} else {
Mar 7, 2011
Mar 7, 2011
819
if (pixel < (unsigned)format->palette->ncolors) {
Mar 7, 2011
Mar 7, 2011
820
821
822
823
824
825
*r = format->palette->colors[pixel].r;
*g = format->palette->colors[pixel].g;
*b = format->palette->colors[pixel].b;
} else {
*r = *g = *b = 0;
}
Jul 10, 2006
Jul 10, 2006
826
}
Apr 26, 2001
Apr 26, 2001
827
828
}
Jul 10, 2006
Jul 10, 2006
829
void
Sep 10, 2007
Sep 10, 2007
830
831
SDL_GetRGBA(Uint32 pixel, const SDL_PixelFormat * format,
Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a)
Apr 26, 2001
Apr 26, 2001
832
{
Sep 10, 2007
Sep 10, 2007
833
if (format->palette == NULL) {
Jul 10, 2006
Jul 10, 2006
834
unsigned v;
Sep 10, 2007
Sep 10, 2007
835
v = (pixel & format->Rmask) >> format->Rshift;
Mar 7, 2011
Mar 7, 2011
836
*r = SDL_expand_byte[format->Rloss][v];
Sep 10, 2007
Sep 10, 2007
837
v = (pixel & format->Gmask) >> format->Gshift;
Mar 7, 2011
Mar 7, 2011
838
*g = SDL_expand_byte[format->Gloss][v];
Sep 10, 2007
Sep 10, 2007
839
v = (pixel & format->Bmask) >> format->Bshift;
Mar 7, 2011
Mar 7, 2011
840
841
842
*b = SDL_expand_byte[format->Bloss][v];
v = (pixel & format->Amask) >> format->Ashift;
*a = SDL_expand_byte[format->Aloss][v];
Jul 10, 2006
Jul 10, 2006
843
} else {
Mar 7, 2011
Mar 7, 2011
844
if (pixel < (unsigned)format->palette->ncolors) {
Mar 7, 2011
Mar 7, 2011
845
846
847
848
849
850
851
*r = format->palette->colors[pixel].r;
*g = format->palette->colors[pixel].g;
*b = format->palette->colors[pixel].b;
*a = SDL_ALPHA_OPAQUE;
} else {
*r = *g = *b = *a = 0;
}
Jul 10, 2006
Jul 10, 2006
852
}
Apr 26, 2001
Apr 26, 2001
853
854
855
}
/* Map from Palette to Palette */
Jul 10, 2006
Jul 10, 2006
856
857
static Uint8 *
Map1to1(SDL_Palette * src, SDL_Palette * dst, int *identical)
Apr 26, 2001
Apr 26, 2001
858
{
Jul 10, 2006
Jul 10, 2006
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
Uint8 *map;
int i;
if (identical) {
if (src->ncolors <= dst->ncolors) {
/* If an identical palette, no need to map */
if (src == dst
||
(SDL_memcmp
(src->colors, dst->colors,
src->ncolors * sizeof(SDL_Color)) == 0)) {
*identical = 1;
return (NULL);
}
}
*identical = 0;
}
map = (Uint8 *) SDL_malloc(src->ncolors);
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
for (i = 0; i < src->ncolors; ++i) {
map[i] = SDL_FindColor(dst,
src->colors[i].r, src->colors[i].g,
src->colors[i].b);
}
return (map);
Apr 26, 2001
Apr 26, 2001
887
}
Jul 10, 2006
Jul 10, 2006
888
Apr 26, 2001
Apr 26, 2001
889
/* Map from Palette to BitField */
Jul 10, 2006
Jul 10, 2006
890
static Uint8 *
Aug 18, 2007
Aug 18, 2007
891
892
Map1toN(SDL_PixelFormat * src, Uint8 Rmod, Uint8 Gmod, Uint8 Bmod, Uint8 Amod,
SDL_PixelFormat * dst)
Apr 26, 2001
Apr 26, 2001
893
{
Jul 10, 2006
Jul 10, 2006
894
895
896
897
898
899
900
901
902
903
904
905
906
907
Uint8 *map;
int i;
int bpp;
SDL_Palette *pal = src->palette;
bpp = ((dst->BytesPerPixel == 3) ? 4 : dst->BytesPerPixel);
map = (Uint8 *) SDL_malloc(pal->ncolors * bpp);
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
/* We memory copy to the pixel map so the endianness is preserved */
for (i = 0; i < pal->ncolors; ++i) {
Aug 17, 2007
Aug 17, 2007
908
Uint8 A = Amod;
Aug 18, 2007
Aug 18, 2007
909
910
911
Uint8 R = (Uint8) ((pal->colors[i].r * Rmod) / 255);
Uint8 G = (Uint8) ((pal->colors[i].g * Gmod) / 255);
Uint8 B = (Uint8) ((pal->colors[i].b * Bmod) / 255);
Aug 17, 2007
Aug 17, 2007
912
ASSEMBLE_RGBA(&map[i * bpp], dst->BytesPerPixel, dst, R, G, B, A);
Jul 10, 2006
Jul 10, 2006
913
914
}
return (map);
Apr 26, 2001
Apr 26, 2001
915
}
Jul 10, 2006
Jul 10, 2006
916
Apr 26, 2001
Apr 26, 2001
917
/* Map from BitField to Dithered-Palette to Palette */
Jul 10, 2006
Jul 10, 2006
918
919
static Uint8 *
MapNto1(SDL_PixelFormat * src, SDL_PixelFormat * dst, int *identical)
Apr 26, 2001
Apr 26, 2001
920
{
Jul 10, 2006
Jul 10, 2006
921
922
923
924
925
926
927
928
929
/* Generate a 256 color dither palette */
SDL_Palette dithered;
SDL_Color colors[256];
SDL_Palette *pal = dst->palette;
dithered.ncolors = 256;
SDL_DitherColors(colors, 8);
dithered.colors = colors;
return (Map1to1(&dithered, pal, identical));
Apr 26, 2001
Apr 26, 2001
930
931
}
Jul 10, 2006
Jul 10, 2006
932
933
SDL_BlitMap *
SDL_AllocBlitMap(void)
Apr 26, 2001
Apr 26, 2001
934
{
Jul 10, 2006
Jul 10, 2006
935
936
937
SDL_BlitMap *map;
/* Allocate the empty map */
Jul 22, 2006
Jul 22, 2006
938
map = (SDL_BlitMap *) SDL_calloc(1, sizeof(*map));
Jul 10, 2006
Jul 10, 2006
939
940
941
942
if (map == NULL) {
SDL_OutOfMemory();
return (NULL);
}
Aug 18, 2007
Aug 18, 2007
943
944
945
946
map->info.r = 0xFF;
map->info.g = 0xFF;
map->info.b = 0xFF;
map->info.a = 0xFF;
Jul 10, 2006
Jul 10, 2006
947
948
949
/* It's ready to go */
return (map);
Apr 26, 2001
Apr 26, 2001
950
}
Jul 10, 2006
Jul 10, 2006
951
952
953
void
SDL_InvalidateMap(SDL_BlitMap * map)
Apr 26, 2001
Apr 26, 2001
954
{
Jul 10, 2006
Jul 10, 2006
955
956
957
958
if (!map) {
return;
}
map->dst = NULL;
Feb 13, 2011
Feb 13, 2011
959
map->palette_version = 0;
Aug 18, 2007
Aug 18, 2007
960
961
962
if (map->info.table) {
SDL_free(map->info.table);
map->info.table = NULL;
Jul 10, 2006
Jul 10, 2006
963
}
Apr 26, 2001
Apr 26, 2001
964
}
Aug 27, 2008
Aug 27, 2008
965
Jul 10, 2006
Jul 10, 2006
966
967
int
SDL_MapSurface(SDL_Surface * src, SDL_Surface * dst)
Apr 26, 2001
Apr 26, 2001
968
{
Jul 10, 2006
Jul 10, 2006
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
SDL_PixelFormat *srcfmt;
SDL_PixelFormat *dstfmt;
SDL_BlitMap *map;
/* Clear out any previous mapping */
map = src->map;
if ((src->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
SDL_UnRLESurface(src, 1);
}
SDL_InvalidateMap(map);
/* Figure out what kind of mapping we're doing */
map->identity = 0;
srcfmt = src->format;
dstfmt = dst->format;
Feb 13, 2011
Feb 13, 2011
984
985
if (SDL_ISPIXELFORMAT_INDEXED(srcfmt->format)) {
if (SDL_ISPIXELFORMAT_INDEXED(dstfmt->format)) {
Jul 10, 2006
Jul 10, 2006
986
/* Palette --> Palette */
Aug 18, 2007
Aug 18, 2007
987
map->info.table =
Jul 10, 2006
Jul 10, 2006
988
989
Map1to1(srcfmt->palette, dstfmt->palette, &map->identity);
if (!map->identity) {
Aug 18, 2007
Aug 18, 2007
990
if (map->info.table == NULL) {
Jul 10, 2006
Jul 10, 2006
991
992
993
994
995
return (-1);
}
}
if (srcfmt->BitsPerPixel != dstfmt->BitsPerPixel)
map->identity = 0;
Feb 13, 2011
Feb 13, 2011
996
} else {
Jul 10, 2006
Jul 10, 2006
997
/* Palette --> BitField */
Aug 18, 2007
Aug 18, 2007
998
999
1000
map->info.table =
Map1toN(srcfmt, src->map->info.r, src->map->info.g,
src->map->info.b, src->map->info.a, dstfmt);