Skip to content

Latest commit

 

History

History
528 lines (492 loc) · 14.5 KB

SDL_blit.h

File metadata and controls

528 lines (492 loc) · 14.5 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
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
#ifndef _SDL_blit_h
#define _SDL_blit_h
#include "SDL_endian.h"
/* The structure passed to the low level blit functions */
typedef struct {
Uint8 *s_pixels;
int s_width;
int s_height;
int s_skip;
Uint8 *d_pixels;
int d_width;
int d_height;
int d_skip;
void *aux_data;
SDL_PixelFormat *src;
Uint8 *table;
SDL_PixelFormat *dst;
} SDL_BlitInfo;
/* The type definition for the low level blit functions */
typedef void (*SDL_loblit)(SDL_BlitInfo *info);
/* This is the private info structure for software accelerated blits */
struct private_swaccel {
SDL_loblit blit;
void *aux_data;
};
/* Blit mapping definition */
typedef struct SDL_BlitMap {
SDL_Surface *dst;
int identity;
Uint8 *table;
SDL_blit hw_blit;
SDL_blit sw_blit;
struct private_hwaccel *hw_data;
struct private_swaccel *sw_data;
/* the version count matches the destination; mismatch indicates
an invalid mapping */
unsigned int format_version;
} SDL_BlitMap;
/* Functions found in SDL_blit.c */
extern int SDL_CalculateBlit(SDL_Surface *surface);
/* Functions found in SDL_blit_{0,1,N,A}.c */
extern SDL_loblit SDL_CalculateBlit0(SDL_Surface *surface, int complex);
extern SDL_loblit SDL_CalculateBlit1(SDL_Surface *surface, int complex);
extern SDL_loblit SDL_CalculateBlitN(SDL_Surface *surface, int complex);
extern SDL_loblit SDL_CalculateAlphaBlit(SDL_Surface *surface, int complex);
/*
* Useful macros for blitting routines
*/
#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
89
#define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \
Apr 26, 2001
Apr 26, 2001
90
{ \
Oct 20, 2005
Oct 20, 2005
91
92
93
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
94
}
Oct 20, 2005
Oct 20, 2005
95
#define RGB_FROM_RGB565(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
96
{ \
Oct 20, 2005
Oct 20, 2005
97
98
99
r = (((Pixel&0xF800)>>11)<<3); \
g = (((Pixel&0x07E0)>>5)<<2); \
b = ((Pixel&0x001F)<<3); \
Apr 26, 2001
Apr 26, 2001
100
}
Oct 20, 2005
Oct 20, 2005
101
#define RGB_FROM_RGB555(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
102
{ \
Oct 20, 2005
Oct 20, 2005
103
104
105
r = (((Pixel&0x7C00)>>10)<<3); \
g = (((Pixel&0x03E0)>>5)<<3); \
b = ((Pixel&0x001F)<<3); \
Apr 26, 2001
Apr 26, 2001
106
}
Oct 20, 2005
Oct 20, 2005
107
#define RGB_FROM_RGB888(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
108
{ \
Oct 20, 2005
Oct 20, 2005
109
110
111
r = ((Pixel&0xFF0000)>>16); \
g = ((Pixel&0xFF00)>>8); \
b = (Pixel&0xFF); \
Apr 26, 2001
Apr 26, 2001
112
}
Oct 20, 2005
Oct 20, 2005
113
#define RETRIEVE_RGB_PIXEL(buf, bpp, Pixel) \
Apr 26, 2001
Apr 26, 2001
114
115
116
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
117
Pixel = *((Uint16 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
118
119
120
121
122
break; \
\
case 3: { \
Uint8 *B = (Uint8 *)(buf); \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Oct 20, 2005
Oct 20, 2005
123
Pixel = B[0] + (B[1] << 8) + (B[2] << 16); \
Apr 26, 2001
Apr 26, 2001
124
} else { \
Oct 20, 2005
Oct 20, 2005
125
Pixel = (B[0] << 16) + (B[1] << 8) + B[2]; \
Apr 26, 2001
Apr 26, 2001
126
127
128
129
130
} \
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
131
Pixel = *((Uint32 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
132
133
134
break; \
\
default: \
Oct 20, 2005
Oct 20, 2005
135
Pixel = 0; /* appease gcc */ \
Apr 26, 2001
Apr 26, 2001
136
137
138
139
break; \
} \
} while(0)
Oct 20, 2005
Oct 20, 2005
140
#define DISEMBLE_RGB(buf, bpp, fmt, Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
141
142
143
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
144
Pixel = *((Uint16 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
145
146
147
148
149
break; \
\
case 3: { \
Uint8 *B = (Uint8 *)buf; \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Oct 20, 2005
Oct 20, 2005
150
Pixel = B[0] + (B[1] << 8) + (B[2] << 16); \
Apr 26, 2001
Apr 26, 2001
151
} else { \
Oct 20, 2005
Oct 20, 2005
152
Pixel = (B[0] << 16) + (B[1] << 8) + B[2]; \
Apr 26, 2001
Apr 26, 2001
153
154
155
156
157
} \
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
158
Pixel = *((Uint32 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
159
160
161
break; \
\
default: \
Oct 20, 2005
Oct 20, 2005
162
Pixel = 0; /* prevent gcc from complaining */ \
Apr 26, 2001
Apr 26, 2001
163
164
break; \
} \
Oct 20, 2005
Oct 20, 2005
165
RGB_FROM_PIXEL(Pixel, fmt, r, g, b); \
Apr 26, 2001
Apr 26, 2001
166
167
168
} while(0)
/* Assemble R-G-B values into a specified pixel format and store them */
Oct 19, 2009
Oct 19, 2009
169
#ifdef __NDS__ /* FIXME */
Jun 25, 2007
Jun 25, 2007
170
171
172
173
174
175
176
#define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \
{ \
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift) | (1<<15); \
}
#else
Oct 20, 2005
Oct 20, 2005
177
#define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \
Apr 26, 2001
Apr 26, 2001
178
{ \
Oct 20, 2005
Oct 20, 2005
179
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
Apr 26, 2001
Apr 26, 2001
180
181
182
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift); \
}
Oct 19, 2009
Oct 19, 2009
183
#endif /* __NDS__ FIXME */
Oct 20, 2005
Oct 20, 2005
184
#define RGB565_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
185
{ \
Oct 20, 2005
Oct 20, 2005
186
Pixel = ((r>>3)<<11)|((g>>2)<<5)|(b>>3); \
Apr 26, 2001
Apr 26, 2001
187
}
Oct 20, 2005
Oct 20, 2005
188
#define RGB555_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
189
{ \
Oct 20, 2005
Oct 20, 2005
190
Pixel = ((r>>3)<<10)|((g>>3)<<5)|(b>>3); \
Apr 26, 2001
Apr 26, 2001
191
}
Oct 20, 2005
Oct 20, 2005
192
#define RGB888_FROM_RGB(Pixel, r, g, b) \
Apr 26, 2001
Apr 26, 2001
193
{ \
Oct 20, 2005
Oct 20, 2005
194
Pixel = (r<<16)|(g<<8)|b; \
Apr 26, 2001
Apr 26, 2001
195
196
197
198
199
}
#define ASSEMBLE_RGB(buf, bpp, fmt, r, g, b) \
{ \
switch (bpp) { \
case 2: { \
Oct 20, 2005
Oct 20, 2005
200
Uint16 Pixel; \
Apr 26, 2001
Apr 26, 2001
201
\
Oct 20, 2005
Oct 20, 2005
202
203
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
*((Uint16 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
} \
break; \
\
case 3: { \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
*((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
221
Uint32 Pixel; \
Apr 26, 2001
Apr 26, 2001
222
\
Oct 20, 2005
Oct 20, 2005
223
224
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
*((Uint32 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
225
226
227
228
229
230
231
232
233
} \
break; \
} \
}
#define ASSEMBLE_RGB_AMASK(buf, bpp, fmt, r, g, b, Amask) \
{ \
switch (bpp) { \
case 2: { \
Uint16 *bufp; \
Oct 20, 2005
Oct 20, 2005
234
Uint16 Pixel; \
Apr 26, 2001
Apr 26, 2001
235
236
\
bufp = (Uint16 *)buf; \
Oct 20, 2005
Oct 20, 2005
237
238
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
*bufp = Pixel | (*bufp & Amask); \
Apr 26, 2001
Apr 26, 2001
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
} \
break; \
\
case 3: { \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
*((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
257
Uint32 Pixel; \
Apr 26, 2001
Apr 26, 2001
258
259
\
bufp = (Uint32 *)buf; \
Oct 20, 2005
Oct 20, 2005
260
261
PIXEL_FROM_RGB(Pixel, fmt, r, g, b); \
*bufp = Pixel | (*bufp & Amask); \
Apr 26, 2001
Apr 26, 2001
262
263
264
265
266
267
} \
break; \
} \
}
/* FIXME: Should we rescale alpha into 0..255 here? */
Oct 20, 2005
Oct 20, 2005
268
#define RGBA_FROM_PIXEL(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
269
{ \
Oct 20, 2005
Oct 20, 2005
270
271
272
273
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
274
}
Oct 20, 2005
Oct 20, 2005
275
#define RGBA_FROM_8888(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
276
{ \
Oct 20, 2005
Oct 20, 2005
277
278
279
280
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
281
}
Oct 20, 2005
Oct 20, 2005
282
#define RGBA_FROM_RGBA8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
283
{ \
Oct 20, 2005
Oct 20, 2005
284
285
286
287
r = (Pixel>>24); \
g = ((Pixel>>16)&0xFF); \
b = ((Pixel>>8)&0xFF); \
a = (Pixel&0xFF); \
Apr 26, 2001
Apr 26, 2001
288
}
Oct 20, 2005
Oct 20, 2005
289
#define RGBA_FROM_ARGB8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
290
{ \
Oct 20, 2005
Oct 20, 2005
291
292
293
294
r = ((Pixel>>16)&0xFF); \
g = ((Pixel>>8)&0xFF); \
b = (Pixel&0xFF); \
a = (Pixel>>24); \
Apr 26, 2001
Apr 26, 2001
295
}
Oct 20, 2005
Oct 20, 2005
296
#define RGBA_FROM_ABGR8888(Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
297
{ \
Oct 20, 2005
Oct 20, 2005
298
299
300
301
r = (Pixel&0xFF); \
g = ((Pixel>>8)&0xFF); \
b = ((Pixel>>16)&0xFF); \
a = (Pixel>>24); \
Apr 26, 2001
Apr 26, 2001
302
}
Oct 20, 2005
Oct 20, 2005
303
#define DISEMBLE_RGBA(buf, bpp, fmt, Pixel, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
304
305
306
do { \
switch (bpp) { \
case 2: \
Oct 20, 2005
Oct 20, 2005
307
Pixel = *((Uint16 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
308
309
310
311
312
break; \
\
case 3: {/* FIXME: broken code (no alpha) */ \
Uint8 *b = (Uint8 *)buf; \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
Oct 20, 2005
Oct 20, 2005
313
Pixel = b[0] + (b[1] << 8) + (b[2] << 16); \
Apr 26, 2001
Apr 26, 2001
314
} else { \
Oct 20, 2005
Oct 20, 2005
315
Pixel = (b[0] << 16) + (b[1] << 8) + b[2]; \
Apr 26, 2001
Apr 26, 2001
316
317
318
319
320
} \
} \
break; \
\
case 4: \
Oct 20, 2005
Oct 20, 2005
321
Pixel = *((Uint32 *)(buf)); \
Apr 26, 2001
Apr 26, 2001
322
323
324
break; \
\
default: \
Oct 20, 2005
Oct 20, 2005
325
Pixel = 0; /* stop gcc complaints */ \
Apr 26, 2001
Apr 26, 2001
326
327
break; \
} \
Oct 20, 2005
Oct 20, 2005
328
329
RGBA_FROM_PIXEL(Pixel, fmt, r, g, b, a); \
Pixel &= ~fmt->Amask; \
Apr 26, 2001
Apr 26, 2001
330
331
332
} while(0)
/* FIXME: this isn't correct, especially for Alpha (maximum != 255) */
Oct 19, 2009
Oct 19, 2009
333
#ifdef __NDS__ /* FIXME */
Jun 25, 2007
Jun 25, 2007
334
335
336
337
338
339
340
341
#define PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \
{ \
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift)| \
((a>>fmt->Aloss)<<fmt->Ashift) | (1<<15); \
}
#else
Oct 20, 2005
Oct 20, 2005
342
#define PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \
Apr 26, 2001
Apr 26, 2001
343
{ \
Oct 20, 2005
Oct 20, 2005
344
Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \
Apr 26, 2001
Apr 26, 2001
345
346
((g>>fmt->Gloss)<<fmt->Gshift)| \
((b>>fmt->Bloss)<<fmt->Bshift)| \
Oct 22, 2002
Oct 22, 2002
347
((a>>fmt->Aloss)<<fmt->Ashift); \
Apr 26, 2001
Apr 26, 2001
348
}
Oct 19, 2009
Oct 19, 2009
349
#endif /* __NDS__ FIXME */
Apr 26, 2001
Apr 26, 2001
350
351
352
353
#define ASSEMBLE_RGBA(buf, bpp, fmt, r, g, b, a) \
{ \
switch (bpp) { \
case 2: { \
Oct 20, 2005
Oct 20, 2005
354
Uint16 Pixel; \
Apr 26, 2001
Apr 26, 2001
355
\
Oct 20, 2005
Oct 20, 2005
356
357
PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a); \
*((Uint16 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
} \
break; \
\
case 3: { /* FIXME: broken code (no alpha) */ \
if(SDL_BYTEORDER == SDL_LIL_ENDIAN) { \
*((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
375
Uint32 Pixel; \
Apr 26, 2001
Apr 26, 2001
376
\
Oct 20, 2005
Oct 20, 2005
377
378
PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a); \
*((Uint32 *)(buf)) = Pixel; \
Apr 26, 2001
Apr 26, 2001
379
380
381
382
383
} \
break; \
} \
}
Oct 20, 2005
Oct 20, 2005
384
/* Blend the RGB values of two Pixels based on a source alpha value */
Apr 26, 2001
Apr 26, 2001
385
386
#define ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB) \
do { \
Oct 10, 2009
Oct 10, 2009
387
388
389
dR = (((sR-dR)*(A)+255)>>8)+dR; \
dG = (((sG-dG)*(A)+255)>>8)+dG; \
dB = (((sB-dB)*(A)+255)>>8)+dB; \
Apr 17, 2005
Apr 17, 2005
390
391
392
} while(0)
Apr 26, 2001
Apr 26, 2001
393
/* This is a very useful loop for optimizing blitters */
Dec 2, 2002
Dec 2, 2002
394
395
396
#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
397
#define USE_DUFFS_LOOP
Dec 2, 2002
Dec 2, 2002
398
#endif
Apr 26, 2001
Apr 26, 2001
399
400
401
402
403
#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
404
switch (width & 7) { \
Apr 26, 2001
Apr 26, 2001
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
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
420
switch (width & 3) { \
Apr 26, 2001
Apr 26, 2001
421
422
423
424
425
426
427
428
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
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
/* 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
470
471
472
473
474
475
/* 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
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
506
507
508
/* 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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
/* 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 */