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

Latest commit

 

History

History
553 lines (510 loc) · 12.3 KB

SDL_blit_1.c

File metadata and controls

553 lines (510 loc) · 12.3 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
/*
SDL - Simple DirectMedia Layer
Feb 1, 2006
Feb 1, 2006
3
Copyright (C) 1997-2006 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
#include "SDL_video.h"
#include "SDL_blit.h"
#include "SDL_sysvideo.h"
#include "SDL_endian.h"
/* Functions to blit from 8-bit surfaces to other surfaces */
May 28, 2006
May 28, 2006
31
static void
May 29, 2006
May 29, 2006
32
Blit1to1(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
33
34
{
#ifndef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
35
int c;
Apr 26, 2001
Apr 26, 2001
36
#endif
May 28, 2006
May 28, 2006
37
38
39
40
41
42
43
44
45
46
47
48
49
50
int width, height;
Uint8 *src, *map, *dst;
int srcskip, dstskip;
/* Set up some basic variables */
width = info->d_width;
height = info->d_height;
src = info->s_pixels;
srcskip = info->s_skip;
dst = info->d_pixels;
dstskip = info->d_skip;
map = info->table;
while (height--) {
Apr 26, 2001
Apr 26, 2001
51
#ifdef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
52
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
53
54
55
56
57
58
59
DUFFS_LOOP(
{
*dst = map[*src];
}
dst++;
src++;
, width);
May 28, 2006
May 28, 2006
60
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
61
#else
May 28, 2006
May 28, 2006
62
63
64
65
66
for (c = width; c; --c) {
*dst = map[*src];
dst++;
src++;
}
Apr 26, 2001
Apr 26, 2001
67
#endif
May 28, 2006
May 28, 2006
68
69
70
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
71
}
May 28, 2006
May 28, 2006
72
Apr 26, 2001
Apr 26, 2001
73
74
75
76
77
78
79
80
/* This is now endian dependent */
#if ( SDL_BYTEORDER == SDL_LIL_ENDIAN )
#define HI 1
#define LO 0
#else /* ( SDL_BYTEORDER == SDL_BIG_ENDIAN ) */
#define HI 0
#define LO 1
#endif
May 28, 2006
May 28, 2006
81
static void
May 29, 2006
May 29, 2006
82
Blit1to2(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
83
84
{
#ifndef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
85
int c;
Apr 26, 2001
Apr 26, 2001
86
#endif
May 28, 2006
May 28, 2006
87
88
89
90
91
92
93
94
95
96
97
98
99
int width, height;
Uint8 *src, *dst;
Uint16 *map;
int srcskip, dstskip;
/* Set up some basic variables */
width = info->d_width;
height = info->d_height;
src = info->s_pixels;
srcskip = info->s_skip;
dst = info->d_pixels;
dstskip = info->d_skip;
map = (Uint16 *) info->table;
Apr 26, 2001
Apr 26, 2001
100
101
#ifdef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
102
103
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
104
105
106
107
108
109
DUFFS_LOOP(
{
*(Uint16 *)dst = map[*src++];
dst += 2;
},
width);
May 28, 2006
May 28, 2006
110
111
112
113
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
114
#else
May 28, 2006
May 28, 2006
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
/* Memory align at 4-byte boundary, if necessary */
if ((long) dst & 0x03) {
/* Don't do anything if width is 0 */
if (width == 0) {
return;
}
--width;
while (height--) {
/* Perform copy alignment */
*(Uint16 *) dst = map[*src++];
dst += 2;
/* Copy in 4 pixel chunks */
for (c = width / 4; c; --c) {
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
}
/* Get any leftovers */
switch (width & 3) {
case 3:
*(Uint16 *) dst = map[*src++];
dst += 2;
case 2:
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
break;
case 1:
*(Uint16 *) dst = map[*src++];
dst += 2;
break;
}
src += srcskip;
dst += dstskip;
}
} else {
while (height--) {
/* Copy in 4 pixel chunks */
for (c = width / 4; c; --c) {
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
}
/* Get any leftovers */
switch (width & 3) {
case 3:
*(Uint16 *) dst = map[*src++];
dst += 2;
case 2:
*(Uint32 *) dst = (map[src[HI]] << 16) | (map[src[LO]]);
src += 2;
dst += 4;
break;
case 1:
*(Uint16 *) dst = map[*src++];
dst += 2;
break;
}
src += srcskip;
dst += dstskip;
}
}
Apr 26, 2001
Apr 26, 2001
185
186
#endif /* USE_DUFFS_LOOP */
}
May 28, 2006
May 28, 2006
187
static void
May 29, 2006
May 29, 2006
188
Blit1to3(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
189
190
{
#ifndef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
191
int c;
Apr 26, 2001
Apr 26, 2001
192
#endif
May 28, 2006
May 28, 2006
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
int o;
int width, height;
Uint8 *src, *map, *dst;
int srcskip, dstskip;
/* Set up some basic variables */
width = info->d_width;
height = info->d_height;
src = info->s_pixels;
srcskip = info->s_skip;
dst = info->d_pixels;
dstskip = info->d_skip;
map = info->table;
while (height--) {
Apr 26, 2001
Apr 26, 2001
208
#ifdef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
209
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
210
211
212
213
214
215
216
217
218
219
DUFFS_LOOP(
{
o = *src * 4;
dst[0] = map[o++];
dst[1] = map[o++];
dst[2] = map[o++];
}
src++;
dst += 3;
, width);
May 28, 2006
May 28, 2006
220
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
221
#else
May 28, 2006
May 28, 2006
222
223
224
225
226
227
228
229
for (c = width; c; --c) {
o = *src * 4;
dst[0] = map[o++];
dst[1] = map[o++];
dst[2] = map[o++];
src++;
dst += 3;
}
Apr 26, 2001
Apr 26, 2001
230
#endif /* USE_DUFFS_LOOP */
May 28, 2006
May 28, 2006
231
232
233
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
234
}
May 28, 2006
May 28, 2006
235
static void
May 29, 2006
May 29, 2006
236
Blit1to4(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
237
238
{
#ifndef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
239
int c;
Apr 26, 2001
Apr 26, 2001
240
#endif
May 28, 2006
May 28, 2006
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
int width, height;
Uint8 *src;
Uint32 *map, *dst;
int srcskip, dstskip;
/* Set up some basic variables */
width = info->d_width;
height = info->d_height;
src = info->s_pixels;
srcskip = info->s_skip;
dst = (Uint32 *) info->d_pixels;
dstskip = info->d_skip / 4;
map = (Uint32 *) info->table;
while (height--) {
Apr 26, 2001
Apr 26, 2001
256
#ifdef USE_DUFFS_LOOP
May 28, 2006
May 28, 2006
257
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
258
259
260
DUFFS_LOOP(
*dst++ = map[*src++];
, width);
May 28, 2006
May 28, 2006
261
/* *INDENT-ON* */
Apr 26, 2001
Apr 26, 2001
262
#else
May 28, 2006
May 28, 2006
263
264
265
266
267
268
269
270
271
272
273
274
275
276
for (c = width / 4; c; --c) {
*dst++ = map[*src++];
*dst++ = map[*src++];
*dst++ = map[*src++];
*dst++ = map[*src++];
}
switch (width & 3) {
case 3:
*dst++ = map[*src++];
case 2:
*dst++ = map[*src++];
case 1:
*dst++ = map[*src++];
}
Apr 26, 2001
Apr 26, 2001
277
#endif /* USE_DUFFS_LOOP */
May 28, 2006
May 28, 2006
278
279
280
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
281
282
}
May 28, 2006
May 28, 2006
283
static void
May 29, 2006
May 29, 2006
284
Blit1to1Key(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
285
{
May 28, 2006
May 28, 2006
286
287
288
289
290
291
292
293
294
295
296
297
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint8 *dst = info->d_pixels;
int dstskip = info->d_skip;
Uint8 *palmap = info->table;
Uint32 ckey = info->src->colorkey;
if (palmap) {
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
298
299
300
301
302
303
304
305
306
DUFFS_LOOP(
{
if ( *src != ckey ) {
*dst = palmap[*src];
}
dst++;
src++;
},
width);
May 28, 2006
May 28, 2006
307
308
309
310
311
312
313
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
} else {
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
314
315
316
317
318
319
320
321
322
DUFFS_LOOP(
{
if ( *src != ckey ) {
*dst = *src;
}
dst++;
src++;
},
width);
May 28, 2006
May 28, 2006
323
324
325
326
327
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
}
Apr 26, 2001
Apr 26, 2001
328
329
}
May 28, 2006
May 28, 2006
330
static void
May 29, 2006
May 29, 2006
331
Blit1to2Key(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
332
{
May 28, 2006
May 28, 2006
333
334
335
336
337
338
339
340
341
342
343
344
345
346
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint16 *dstp = (Uint16 *) info->d_pixels;
int dstskip = info->d_skip;
Uint16 *palmap = (Uint16 *) info->table;
Uint32 ckey = info->src->colorkey;
/* Set up some basic variables */
dstskip /= 2;
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
347
348
349
350
351
352
353
354
355
DUFFS_LOOP(
{
if ( *src != ckey ) {
*dstp=palmap[*src];
}
src++;
dstp++;
},
width);
May 28, 2006
May 28, 2006
356
357
358
359
/* *INDENT-ON* */
src += srcskip;
dstp += dstskip;
}
Apr 26, 2001
Apr 26, 2001
360
361
}
May 28, 2006
May 28, 2006
362
static void
May 29, 2006
May 29, 2006
363
Blit1to3Key(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
364
{
May 28, 2006
May 28, 2006
365
366
367
368
369
370
371
372
373
374
375
376
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint8 *dst = info->d_pixels;
int dstskip = info->d_skip;
Uint8 *palmap = info->table;
Uint32 ckey = info->src->colorkey;
int o;
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
377
378
379
380
381
382
383
384
385
386
387
388
DUFFS_LOOP(
{
if ( *src != ckey ) {
o = *src * 4;
dst[0] = palmap[o++];
dst[1] = palmap[o++];
dst[2] = palmap[o++];
}
src++;
dst += 3;
},
width);
May 28, 2006
May 28, 2006
389
390
391
392
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
393
394
}
May 28, 2006
May 28, 2006
395
static void
May 29, 2006
May 29, 2006
396
Blit1to4Key(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
397
{
May 28, 2006
May 28, 2006
398
399
400
401
402
403
404
405
406
407
408
409
410
411
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint32 *dstp = (Uint32 *) info->d_pixels;
int dstskip = info->d_skip;
Uint32 *palmap = (Uint32 *) info->table;
Uint32 ckey = info->src->colorkey;
/* Set up some basic variables */
dstskip /= 4;
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
412
413
414
415
416
417
418
419
420
DUFFS_LOOP(
{
if ( *src != ckey ) {
*dstp = palmap[*src];
}
src++;
dstp++;
},
width);
May 28, 2006
May 28, 2006
421
422
423
424
/* *INDENT-ON* */
src += srcskip;
dstp += dstskip;
}
Apr 26, 2001
Apr 26, 2001
425
426
}
May 28, 2006
May 28, 2006
427
static void
May 29, 2006
May 29, 2006
428
Blit1toNAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
429
{
May 28, 2006
May 28, 2006
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint8 *dst = info->d_pixels;
int dstskip = info->d_skip;
SDL_PixelFormat *dstfmt = info->dst;
const SDL_Color *srcpal = info->src->palette->colors;
int dstbpp;
const int A = info->src->alpha;
/* Set up some basic variables */
dstbpp = dstfmt->BytesPerPixel;
while (height--) {
int sR, sG, sB;
int dR, dG, dB;
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
448
449
450
451
452
453
454
455
456
457
458
459
460
461
DUFFS_LOOP4(
{
Uint32 pixel;
sR = srcpal[*src].r;
sG = srcpal[*src].g;
sB = srcpal[*src].b;
DISEMBLE_RGB(dst, dstbpp, dstfmt,
pixel, dR, dG, dB);
ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB);
ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB);
src++;
dst += dstbpp;
},
width);
May 28, 2006
May 28, 2006
462
463
464
465
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
466
467
}
May 28, 2006
May 28, 2006
468
static void
May 29, 2006
May 29, 2006
469
Blit1toNAlphaKey(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
470
{
May 28, 2006
May 28, 2006
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
int width = info->d_width;
int height = info->d_height;
Uint8 *src = info->s_pixels;
int srcskip = info->s_skip;
Uint8 *dst = info->d_pixels;
int dstskip = info->d_skip;
SDL_PixelFormat *srcfmt = info->src;
SDL_PixelFormat *dstfmt = info->dst;
const SDL_Color *srcpal = info->src->palette->colors;
Uint32 ckey = srcfmt->colorkey;
int dstbpp;
const int A = srcfmt->alpha;
/* Set up some basic variables */
dstbpp = dstfmt->BytesPerPixel;
while (height--) {
int sR, sG, sB;
int dR, dG, dB;
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
DUFFS_LOOP(
{
if ( *src != ckey ) {
Uint32 pixel;
sR = srcpal[*src].r;
sG = srcpal[*src].g;
sB = srcpal[*src].b;
DISEMBLE_RGB(dst, dstbpp, dstfmt,
pixel, dR, dG, dB);
ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB);
ASSEMBLE_RGB(dst, dstbpp, dstfmt, dR, dG, dB);
}
src++;
dst += dstbpp;
},
width);
May 28, 2006
May 28, 2006
507
508
509
510
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
511
512
513
}
static SDL_loblit one_blit[] = {
May 28, 2006
May 28, 2006
514
NULL, Blit1to1, Blit1to2, Blit1to3, Blit1to4
Apr 26, 2001
Apr 26, 2001
515
516
517
};
static SDL_loblit one_blitkey[] = {
May 28, 2006
May 28, 2006
518
NULL, Blit1to1Key, Blit1to2Key, Blit1to3Key, Blit1to4Key
Apr 26, 2001
Apr 26, 2001
519
520
};
May 28, 2006
May 28, 2006
521
SDL_loblit
May 29, 2006
May 29, 2006
522
SDL_CalculateBlit1(SDL_Surface * surface, int blit_index)
Apr 26, 2001
Apr 26, 2001
523
{
May 28, 2006
May 28, 2006
524
525
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
int which;
SDL_PixelFormat *dstfmt;
dstfmt = surface->map->dst->format;
if (dstfmt->BitsPerPixel < 8) {
which = 0;
} else {
which = dstfmt->BytesPerPixel;
}
switch (blit_index) {
case 0: /* copy */
return one_blit[which];
case 1: /* colorkey */
return one_blitkey[which];
case 2: /* alpha */
/* Supporting 8bpp->8bpp alpha is doable but requires lots of
tables which consume space and takes time to precompute,
so is better left to the user */
return which >= 2 ? Blit1toNAlpha : NULL;
case 3: /* alpha + colorkey */
return which >= 2 ? Blit1toNAlphaKey : NULL;
}
return NULL;
Apr 26, 2001
Apr 26, 2001
551
}
May 28, 2006
May 28, 2006
552
553
/* vi: set ts=4 sw=4 expandtab: */