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

Latest commit

 

History

History
495 lines (459 loc) · 14.1 KB

SDL_blit.h

File metadata and controls

495 lines (459 loc) · 14.1 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
#ifndef _SDL_blit_h
#define _SDL_blit_h
Aug 16, 2007
Aug 16, 2007
27
#include "SDL_cpuinfo.h"
Apr 26, 2001
Apr 26, 2001
28
#include "SDL_endian.h"
Feb 3, 2011
Feb 3, 2011
29
#include "SDL_surface.h"
Apr 26, 2001
Apr 26, 2001
30
Mar 7, 2011
Mar 7, 2011
31
32
33
/* Table to do pixel byte expansion */
extern Uint8* SDL_expand_byte[9];
Aug 17, 2007
Aug 17, 2007
34
/* SDL blit copy flags */
Aug 18, 2007
Aug 18, 2007
35
36
#define SDL_COPY_MODULATE_COLOR 0x00000001
#define SDL_COPY_MODULATE_ALPHA 0x00000002
Feb 1, 2011
Feb 1, 2011
37
38
#define SDL_COPY_BLEND 0x00000010
#define SDL_COPY_ADD 0x00000020
Feb 5, 2011
Feb 5, 2011
39
#define SDL_COPY_MOD 0x00000040
Aug 18, 2007
Aug 18, 2007
40
41
42
43
44
#define SDL_COPY_COLORKEY 0x00000100
#define SDL_COPY_NEAREST 0x00000200
#define SDL_COPY_RLE_DESIRED 0x00001000
#define SDL_COPY_RLE_COLORKEY 0x00002000
#define SDL_COPY_RLE_ALPHAKEY 0x00004000
Dec 7, 2008
Dec 7, 2008
45
#define SDL_COPY_RLE_MASK (SDL_COPY_RLE_DESIRED|SDL_COPY_RLE_COLORKEY|SDL_COPY_RLE_ALPHAKEY)
Aug 17, 2007
Aug 17, 2007
46
47
/* SDL blit CPU flags */
Aug 18, 2007
Aug 18, 2007
48
49
#define SDL_CPU_ANY 0x00000000
#define SDL_CPU_MMX 0x00000001
Feb 23, 2011
Feb 23, 2011
50
#define SDL_CPU_3DNOW 0x00000002
Aug 18, 2007
Aug 18, 2007
51
52
#define SDL_CPU_SSE 0x00000004
#define SDL_CPU_SSE2 0x00000008
Feb 23, 2011
Feb 23, 2011
53
54
#define SDL_CPU_ALTIVEC_PREFETCH 0x00000010
#define SDL_CPU_ALTIVEC_NOPREFETCH 0x00000020
Aug 17, 2007
Aug 17, 2007
55
Aug 18, 2007
Aug 18, 2007
56
57
typedef struct
{
Aug 17, 2007
Aug 17, 2007
58
59
60
Uint8 *src;
int src_w, src_h;
int src_pitch;
Aug 18, 2007
Aug 18, 2007
61
int src_skip;
Aug 17, 2007
Aug 17, 2007
62
63
64
Uint8 *dst;
int dst_w, dst_h;
int dst_pitch;
Aug 18, 2007
Aug 18, 2007
65
int dst_skip;
Aug 17, 2007
Aug 17, 2007
66
67
SDL_PixelFormat *src_fmt;
SDL_PixelFormat *dst_fmt;
Jul 10, 2006
Jul 10, 2006
68
Uint8 *table;
Aug 17, 2007
Aug 17, 2007
69
70
71
int flags;
Uint32 colorkey;
Uint8 r, g, b, a;
Apr 26, 2001
Apr 26, 2001
72
73
} SDL_BlitInfo;
Aug 18, 2007
Aug 18, 2007
74
typedef void (SDLCALL * SDL_BlitFunc) (SDL_BlitInfo * info);
Aug 17, 2007
Aug 17, 2007
75
Aug 18, 2007
Aug 18, 2007
76
77
typedef struct
{
Aug 17, 2007
Aug 17, 2007
78
79
80
81
82
83
Uint32 src_format;
Uint32 dst_format;
int flags;
int cpu;
SDL_BlitFunc func;
} SDL_BlitFuncEntry;
Apr 26, 2001
Apr 26, 2001
84
85
/* Blit mapping definition */
Jul 10, 2006
Jul 10, 2006
86
87
88
89
typedef struct SDL_BlitMap
{
SDL_Surface *dst;
int identity;
Aug 17, 2007
Aug 17, 2007
90
91
SDL_blit blit;
void *data;
Aug 17, 2007
Aug 17, 2007
92
SDL_BlitInfo info;
Jul 10, 2006
Jul 10, 2006
93
94
95
/* the version count matches the destination; mismatch indicates
an invalid mapping */
Feb 13, 2011
Feb 13, 2011
96
Uint32 palette_version;
Apr 26, 2001
Apr 26, 2001
97
98
99
} SDL_BlitMap;
/* Functions found in SDL_blit.c */
Jul 10, 2006
Jul 10, 2006
100
extern int SDL_CalculateBlit(SDL_Surface * surface);
Apr 26, 2001
Apr 26, 2001
101
Aug 18, 2007
Aug 18, 2007
102
103
104
105
106
/* Functions found in SDL_blit_*.c */
extern SDL_BlitFunc SDL_CalculateBlit0(SDL_Surface * surface);
extern SDL_BlitFunc SDL_CalculateBlit1(SDL_Surface * surface);
extern SDL_BlitFunc SDL_CalculateBlitN(SDL_Surface * surface);
extern SDL_BlitFunc SDL_CalculateBlitA(SDL_Surface * surface);
Aug 17, 2007
Aug 17, 2007
107
Apr 26, 2001
Apr 26, 2001
108
109
110
111
/*
* Useful macros for blitting routines
*/
Aug 16, 2007
Aug 16, 2007
112
113
114
#if defined(__GNUC__)
#define DECLARE_ALIGNED(t,v,a) t __attribute__((aligned(a))) v
#elif defined(_MSC_VER)
Aug 16, 2007
Aug 16, 2007
115
#define DECLARE_ALIGNED(t,v,a) __declspec(align(a)) t v
Aug 16, 2007
Aug 16, 2007
116
117
118
119
#else
#define DECLARE_ALIGNED(t,v,a) t v
#endif
Apr 26, 2001
Apr 26, 2001
120
/* Load pixel of the specified format from a buffer and get its R-G-B values */
Oct 20, 2005
Oct 20, 2005
121
#define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \
Apr 26, 2001
Apr 26, 2001
122
{ \
Mar 7, 2011
Mar 7, 2011
123
124
125
r = SDL_expand_byte[fmt->Rloss][((Pixel&fmt->Rmask)>>fmt->Rshift)]; \
g = SDL_expand_byte[fmt->Gloss][((Pixel&fmt->Gmask)>>fmt->Gshift)]; \
b = SDL_expand_byte[fmt->Bloss][((Pixel&fmt->Bmask)>>fmt->Bshift)]; \
Apr 26, 2001
Apr 26, 2001
126
}
Oct 20, 2005
Oct 20, 2005
127
#define RGB_FROM_RGB565(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
128
{ \
Mar 7, 2011
Mar 7, 2011
129
130
131
r = SDL_expand_byte[3][((Pixel&0xF800)>>11)]; \
g = SDL_expand_byte[2][((Pixel&0x07E0)>>5)]; \
b = SDL_expand_byte[3][(Pixel&0x001F)]; \
Apr 26, 2001
Apr 26, 2001
132
}
Oct 20, 2005
Oct 20, 2005
133
#define RGB_FROM_RGB555(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
134
{ \
Mar 7, 2011
Mar 7, 2011
135
136
137
r = SDL_expand_byte[3][((Pixel&0x7C00)>>10)]; \
g = SDL_expand_byte[3][((Pixel&0x03E0)>>5)]; \
b = SDL_expand_byte[3][(Pixel&0x001F)]; \
Apr 26, 2001
Apr 26, 2001
138
}
Oct 20, 2005
Oct 20, 2005
139
#define RGB_FROM_RGB888(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
140
{ \
Oct 20, 2005
Oct 20, 2005
141
142
143
r = ((Pixel&0xFF0000)>>16); \
g = ((Pixel&0xFF00)>>8); \
b = (Pixel&0xFF); \
Apr 26, 2001
Apr 26, 2001
144
}
Oct 20, 2005
Oct 20, 2005
145
#define RETRIEVE_RGB_PIXEL(buf, bpp, Pixel) \
Apr 26, 2001
Apr 26, 2001
146
147
148
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
149
Pixel = *((Uint16 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
150
151
152
153
break; \
\
case 3: { \
Uint8 *B = (Uint8 *)(buf); \
Dec 2, 2008
Dec 2, 2008
154
if (SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Oct 20, 2005
Oct 20, 2005
155
Pixel = B[0] + (B[1] << 8) + (B[2] << 16); \
Apr 26, 2001
Apr 26, 2001
156
} else { \
Oct 20, 2005
Oct 20, 2005
157
Pixel = (B[0] << 16) + (B[1] << 8) + B[2]; \
Apr 26, 2001
Apr 26, 2001
158
159
160
161
162
} \
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
163
Pixel = *((Uint32 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
164
165
166
break; \
\
default: \
Mar 7, 2011
Mar 7, 2011
167
Pixel = 0; /* stop gcc complaints */ \
Apr 26, 2001
Apr 26, 2001
168
169
break; \
} \
Dec 2, 2008
Dec 2, 2008
170
} while (0)
Apr 26, 2001
Apr 26, 2001
171
Oct 20, 2005
Oct 20, 2005
172
#define DISEMBLE_RGB(buf, bpp, fmt, Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
173
174
175
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
176
Pixel = *((Uint16 *)(buf)); \
Dec 2, 2008
Dec 2, 2008
177
RGB_FROM_PIXEL(Pixel, fmt, r, g, b); \
Apr 26, 2001
Apr 26, 2001
178
179
break; \
\
Dec 2, 2008
Dec 2, 2008
180
case 3: { \
Mar 7, 2011
Mar 7, 2011
181
Pixel = 0; \
Dec 2, 2008
Dec 2, 2008
182
183
184
185
if (SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
r = *((buf)+fmt->Rshift/8); \
g = *((buf)+fmt->Gshift/8); \
b = *((buf)+fmt->Bshift/8); \
Apr 26, 2001
Apr 26, 2001
186
} else { \
Dec 2, 2008
Dec 2, 2008
187
188
189
r = *((buf)+2-fmt->Rshift/8); \
g = *((buf)+2-fmt->Gshift/8); \
b = *((buf)+2-fmt->Bshift/8); \
Apr 26, 2001
Apr 26, 2001
190
191
192
193
194
} \
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
195
Pixel = *((Uint32 *)(buf)); \
Dec 2, 2008
Dec 2, 2008
196
RGB_FROM_PIXEL(Pixel, fmt, r, g, b); \
Apr 26, 2001
Apr 26, 2001
197
198
break; \
\
Dec 2, 2008
Dec 2, 2008
199
default: \
Mar 7, 2011
Mar 7, 2011
200
201
202
/* stop gcc complaints */ \
Pixel = 0; \
r = g = b = 0; \
Apr 26, 2001
Apr 26, 2001
203
204
break; \
} \
Dec 2, 2008
Dec 2, 2008
205
} while (0)
Apr 26, 2001
Apr 26, 2001
206
207
/* Assemble R-G-B values into a specified pixel format and store them */
Oct 20, 2005
Oct 20, 2005
208
#define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \
Apr 26, 2001
Apr 26, 2001
209
{ \
Oct 20, 2005
Oct 20, 2005
210
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
Apr 26, 2001
Apr 26, 2001
211
((g>>fmt->Gloss)<<fmt->Gshift)| \
Mar 7, 2011
Mar 7, 2011
212
213
((b>>fmt->Bloss)<<fmt->Bshift)|
fmt->Amask; \
Apr 26, 2001
Apr 26, 2001
214
}
Oct 20, 2005
Oct 20, 2005
215
#define RGB565_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
216
{ \
Oct 20, 2005
Oct 20, 2005
217
Pixel = ((r>>3)<<11)|((g>>2)<<5)|(b>>3); \
Apr 26, 2001
Apr 26, 2001
218
}
Oct 20, 2005
Oct 20, 2005
219
#define RGB555_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
220
{ \
Oct 20, 2005
Oct 20, 2005
221
Pixel = ((r>>3)<<10)|((g>>3)<<5)|(b>>3); \
Apr 26, 2001
Apr 26, 2001
222
}
Oct 20, 2005
Oct 20, 2005
223
#define RGB888_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
224
{ \
Oct 20, 2005
Oct 20, 2005
225
Pixel = (r<<16)|(g<<8)|b; \
Apr 26, 2001
Apr 26, 2001
226
}
Dec 21, 2008
Dec 21, 2008
227
228
229
230
#define ARGB8888_FROM_RGBA(Pixel, r, g, b, a) \
{ \
Pixel = (a<<24)|(r<<16)|(g<<8)|b; \
}
Feb 7, 2009
Feb 7, 2009
231
232
233
234
235
236
237
238
239
240
241
242
#define RGBA8888_FROM_RGBA(Pixel, r, g, b, a) \
{ \
Pixel = (r<<24)|(g<<16)|(b<<8)|a; \
}
#define ABGR8888_FROM_RGBA(Pixel, r, g, b, a) \
{ \
Pixel = (a<<24)|(b<<16)|(g<<8)|r; \
}
#define BGRA8888_FROM_RGBA(Pixel, r, g, b, a) \
{ \
Pixel = (b<<24)|(g<<16)|(r<<8)|a; \
}
Apr 26, 2001
Apr 26, 2001
243
244
245
246
#define ASSEMBLE_RGB(buf, bpp, fmt, r, g, b) \
{ \
switch (bpp) { \
case 2: { \
Oct 20, 2005
Oct 20, 2005
247
Uint16 Pixel; \
Apr 26, 2001
Apr 26, 2001
248
\
Oct 20, 2005
Oct 20, 2005
249
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
Mar 7, 2011
Mar 7, 2011
250
*((Uint16 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
251
252
253
254
} \
break; \
\
case 3: { \
Dec 2, 2008
Dec 2, 2008
255
if (SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Apr 26, 2001
Apr 26, 2001
256
257
258
259
260
261
262
263
264
265
266
267
*((buf)+fmt->Rshift/8) = r; \
*((buf)+fmt->Gshift/8) = g; \
*((buf)+fmt->Bshift/8) = b; \
} else { \
*((buf)+2-fmt->Rshift/8) = r; \
*((buf)+2-fmt->Gshift/8) = g; \
*((buf)+2-fmt->Bshift/8) = b; \
} \
} \
break; \
\
case 4: { \
Oct 20, 2005
Oct 20, 2005
268
Uint32 Pixel; \
Apr 26, 2001
Apr 26, 2001
269
\
Oct 20, 2005
Oct 20, 2005
270
271
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
*((Uint32 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
272
273
274
275
276
277
} \
break; \
} \
}
/* FIXME: Should we rescale alpha into 0..255 here? */
Oct 20, 2005
Oct 20, 2005
278
#define RGBA_FROM_PIXEL(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
279
{ \
Mar 7, 2011
Mar 7, 2011
280
281
282
283
r = SDL_expand_byte[fmt->Rloss][((Pixel&fmt->Rmask)>>fmt->Rshift)]; \
g = SDL_expand_byte[fmt->Gloss][((Pixel&fmt->Gmask)>>fmt->Gshift)]; \
b = SDL_expand_byte[fmt->Bloss][((Pixel&fmt->Bmask)>>fmt->Bshift)]; \
a = SDL_expand_byte[fmt->Aloss][((Pixel&fmt->Amask)>>fmt->Ashift)]; \
Apr 26, 2001
Apr 26, 2001
284
}
Oct 20, 2005
Oct 20, 2005
285
#define RGBA_FROM_8888(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
286
{ \
Oct 20, 2005
Oct 20, 2005
287
288
289
290
r = (Pixel&fmt->Rmask)>>fmt->Rshift; \
g = (Pixel&fmt->Gmask)>>fmt->Gshift; \
b = (Pixel&fmt->Bmask)>>fmt->Bshift; \
a = (Pixel&fmt->Amask)>>fmt->Ashift; \
Apr 26, 2001
Apr 26, 2001
291
}
Oct 20, 2005
Oct 20, 2005
292
#define RGBA_FROM_RGBA8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
293
{ \
Oct 20, 2005
Oct 20, 2005
294
295
296
297
r = (Pixel>>24); \
g = ((Pixel>>16)&0xFF); \
b = ((Pixel>>8)&0xFF); \
a = (Pixel&0xFF); \
Apr 26, 2001
Apr 26, 2001
298
}
Oct 20, 2005
Oct 20, 2005
299
#define RGBA_FROM_ARGB8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
300
{ \
Oct 20, 2005
Oct 20, 2005
301
302
303
304
r = ((Pixel>>16)&0xFF); \
g = ((Pixel>>8)&0xFF); \
b = (Pixel&0xFF); \
a = (Pixel>>24); \
Apr 26, 2001
Apr 26, 2001
305
}
Oct 20, 2005
Oct 20, 2005
306
#define RGBA_FROM_ABGR8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
307
{ \
Oct 20, 2005
Oct 20, 2005
308
309
310
311
r = (Pixel&0xFF); \
g = ((Pixel>>8)&0xFF); \
b = ((Pixel>>16)&0xFF); \
a = (Pixel>>24); \
Apr 26, 2001
Apr 26, 2001
312
}
Feb 7, 2009
Feb 7, 2009
313
314
315
316
317
318
319
#define RGBA_FROM_BGRA8888(Pixel, r, g, b, a) \
{ \
r = ((Pixel>>8)&0xFF); \
g = ((Pixel>>16)&0xFF); \
b = (Pixel>>24); \
a = (Pixel&0xFF); \
}
Oct 20, 2005
Oct 20, 2005
320
#define DISEMBLE_RGBA(buf, bpp, fmt, Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
321
322
323
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
324
Pixel = *((Uint16 *)(buf)); \
Dec 2, 2008
Dec 2, 2008
325
RGBA_FROM_PIXEL(Pixel, fmt, r, g, b, a); \
Apr 26, 2001
Apr 26, 2001
326
327
break; \
\
Dec 2, 2008
Dec 2, 2008
328
case 3: { \
Mar 7, 2011
Mar 7, 2011
329
Pixel = 0; \
Dec 2, 2008
Dec 2, 2008
330
331
332
333
if (SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
r = *((buf)+fmt->Rshift/8); \
g = *((buf)+fmt->Gshift/8); \
b = *((buf)+fmt->Bshift/8); \
Apr 26, 2001
Apr 26, 2001
334
} else { \
Dec 2, 2008
Dec 2, 2008
335
336
337
r = *((buf)+2-fmt->Rshift/8); \
g = *((buf)+2-fmt->Gshift/8); \
b = *((buf)+2-fmt->Bshift/8); \
Apr 26, 2001
Apr 26, 2001
338
} \
Dec 2, 2008
Dec 2, 2008
339
a = 0xFF; \
Apr 26, 2001
Apr 26, 2001
340
341
342
343
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
344
Pixel = *((Uint32 *)(buf)); \
Dec 2, 2008
Dec 2, 2008
345
RGBA_FROM_PIXEL(Pixel, fmt, r, g, b, a); \
Apr 26, 2001
Apr 26, 2001
346
347
348
break; \
\
default: \
Mar 7, 2011
Mar 7, 2011
349
350
351
/* stop gcc complaints */ \
Pixel = 0; \
r = g = b = a = 0; \
Apr 26, 2001
Apr 26, 2001
352
353
break; \
} \
Dec 2, 2008
Dec 2, 2008
354
} while (0)
Apr 26, 2001
Apr 26, 2001
355
356
/* FIXME: this isn't correct, especially for Alpha (maximum != 255) */
Oct 20, 2005
Oct 20, 2005
357
#define PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
358
{ \
Oct 20, 2005
Oct 20, 2005
359
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
Apr 26, 2001
Apr 26, 2001
360
361
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift)| \
Oct 22, 2002
Oct 22, 2002
362
((a>>fmt->Aloss)<<fmt->Ashift); \
Apr 26, 2001
Apr 26, 2001
363
364
365
366
367
}
#define ASSEMBLE_RGBA(buf, bpp, fmt, r, g, b, a) \
{ \
switch (bpp) { \
case 2: { \
Oct 20, 2005
Oct 20, 2005
368
Uint16 Pixel; \
Apr 26, 2001
Apr 26, 2001
369
\
Oct 20, 2005
Oct 20, 2005
370
PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a); \
Mar 7, 2011
Mar 7, 2011
371
*((Uint16 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
372
373
374
} \
break; \
\
Dec 2, 2008
Dec 2, 2008
375
376
case 3: { \
if (SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Apr 26, 2001
Apr 26, 2001
377
378
379
380
381
382
383
384
385
386
387
388
*((buf)+fmt->Rshift/8) = r; \
*((buf)+fmt->Gshift/8) = g; \
*((buf)+fmt->Bshift/8) = b; \
} else { \
*((buf)+2-fmt->Rshift/8) = r; \
*((buf)+2-fmt->Gshift/8) = g; \
*((buf)+2-fmt->Bshift/8) = b; \
} \
} \
break; \
\
case 4: { \
Oct 20, 2005
Oct 20, 2005
389
Uint32 Pixel; \
Apr 26, 2001
Apr 26, 2001
390
\
Oct 20, 2005
Oct 20, 2005
391
392
PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a); \
*((Uint32 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
393
394
395
396
397
} \
break; \
} \
}
Oct 20, 2005
Oct 20, 2005
398
/* Blend the RGB values of two Pixels based on a source alpha value */
Apr 26, 2001
Apr 26, 2001
399
400
#define ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB) \
do { \
Jan 10, 2010
Jan 10, 2010
401
402
403
dR = ((((int)(sR-dR)*(int)A)/255)+dR); \
dG = ((((int)(sG-dG)*(int)A)/255)+dG); \
dB = ((((int)(sB-dB)*(int)A)/255)+dB); \
Apr 17, 2005
Apr 17, 2005
404
405
406
} while(0)
Apr 26, 2001
Apr 26, 2001
407
/* This is a very useful loop for optimizing blitters */
Dec 2, 2002
Dec 2, 2002
408
409
410
#if defined(_MSC_VER) && (_MSC_VER == 1300)
/* There's a bug in the Visual C++ 7 optimizer when compiling this code */
#else
Apr 26, 2001
Apr 26, 2001
411
#define USE_DUFFS_LOOP
Dec 2, 2002
Dec 2, 2002
412
#endif
Apr 26, 2001
Apr 26, 2001
413
414
415
416
417
#ifdef USE_DUFFS_LOOP
/* 8-times unrolled loop */
#define DUFFS_LOOP8(pixel_copy_increment, width) \
{ int n = (width+7)/8; \
Jul 7, 2001
Jul 7, 2001
418
switch (width & 7) { \
Apr 26, 2001
Apr 26, 2001
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
case 0: do { pixel_copy_increment; \
case 7: pixel_copy_increment; \
case 6: pixel_copy_increment; \
case 5: pixel_copy_increment; \
case 4: pixel_copy_increment; \
case 3: pixel_copy_increment; \
case 2: pixel_copy_increment; \
case 1: pixel_copy_increment; \
} while ( --n > 0 ); \
} \
}
/* 4-times unrolled loop */
#define DUFFS_LOOP4(pixel_copy_increment, width) \
{ int n = (width+3)/4; \
Jul 7, 2001
Jul 7, 2001
434
switch (width & 3) { \
Apr 26, 2001
Apr 26, 2001
435
436
437
438
case 0: do { pixel_copy_increment; \
case 3: pixel_copy_increment; \
case 2: pixel_copy_increment; \
case 1: pixel_copy_increment; \
Jan 13, 2009
Jan 13, 2009
439
} while (--n > 0); \
Aug 22, 2003
Aug 22, 2003
440
441
442
} \
}
Apr 26, 2001
Apr 26, 2001
443
444
445
446
/* Use the 8-times version of the loop by default */
#define DUFFS_LOOP(pixel_copy_increment, width) \
DUFFS_LOOP8(pixel_copy_increment, width)
Jan 13, 2009
Jan 13, 2009
447
448
449
450
451
452
453
454
455
456
/* Special version of Duff's device for even more optimization */
#define DUFFS_LOOP_124(pixel_copy_increment1, \
pixel_copy_increment2, \
pixel_copy_increment4, width) \
{ int n = width; \
if (n & 1) { \
pixel_copy_increment1; n -= 1; \
} \
if (n & 2) { \
pixel_copy_increment2; n -= 2; \
Aug 22, 2003
Aug 22, 2003
457
} \
Jan 13, 2009
Jan 13, 2009
458
459
460
461
462
463
464
if (n) { \
n = (n+7)/ 8; \
switch (n & 4) { \
case 0: do { pixel_copy_increment4; \
case 4: pixel_copy_increment4; \
} while (--n > 0); \
} \
Aug 22, 2003
Aug 22, 2003
465
466
467
} \
}
Jan 13, 2009
Jan 13, 2009
468
469
#else
Apr 26, 2001
Apr 26, 2001
470
471
472
473
474
475
476
477
478
479
480
/* Don't use Duff's device to unroll loops */
#define DUFFS_LOOP(pixel_copy_increment, width) \
{ int n; \
for ( n=width; n > 0; --n ) { \
pixel_copy_increment; \
} \
}
#define DUFFS_LOOP8(pixel_copy_increment, width) \
DUFFS_LOOP(pixel_copy_increment, width)
#define DUFFS_LOOP4(pixel_copy_increment, width) \
DUFFS_LOOP(pixel_copy_increment, width)
Jan 13, 2009
Jan 13, 2009
481
482
483
484
#define DUFFS_LOOP_124(pixel_copy_increment1, \
pixel_copy_increment2, \
pixel_copy_increment4, width) \
DUFFS_LOOP(pixel_copy_increment1, width)
Apr 26, 2001
Apr 26, 2001
485
486
487
488
489
490
491
492
493
#endif /* USE_DUFFS_LOOP */
/* Prevent Visual C++ 6.0 from printing out stupid warnings */
#if defined(_MSC_VER) && (_MSC_VER >= 600)
#pragma warning(disable: 4550)
#endif
#endif /* _SDL_blit_h */
Dec 21, 2008
Dec 21, 2008
494
Jul 10, 2006
Jul 10, 2006
495
/* vi: set ts=4 sw=4 expandtab: */