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

Latest commit

 

History

History
580 lines (539 loc) · 15.9 KB

SDL_blit.h

File metadata and controls

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