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

Latest commit

 

History

History
1359 lines (1219 loc) · 40.6 KB

SDL_blit_A.c

File metadata and controls

1359 lines (1219 loc) · 40.6 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
#include "SDL_video.h"
#include "SDL_blit.h"
/* Functions to perform alpha blended blitting */
/* N->1 blending with per-surface alpha */
Jul 10, 2006
Jul 10, 2006
30
31
static void
BlitNto1SurfaceAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
32
{
Aug 17, 2007
Aug 17, 2007
33
34
35
int width = info->dst_w;
int height = info->dst_h;
Uint8 *src = info->src;
Aug 18, 2007
Aug 18, 2007
36
int srcskip = info->src_skip;
Aug 17, 2007
Aug 17, 2007
37
Uint8 *dst = info->dst;
Aug 18, 2007
Aug 18, 2007
38
int dstskip = info->dst_skip;
Jul 10, 2006
Jul 10, 2006
39
Uint8 *palmap = info->table;
Aug 18, 2007
Aug 18, 2007
40
41
SDL_PixelFormat *srcfmt = info->src_fmt;
SDL_PixelFormat *dstfmt = info->dst_fmt;
Jul 10, 2006
Jul 10, 2006
42
43
int srcbpp = srcfmt->BytesPerPixel;
Aug 18, 2007
Aug 18, 2007
44
const unsigned A = info->a;
Jul 10, 2006
Jul 10, 2006
45
46
47
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
48
49
DUFFS_LOOP4(
{
Oct 20, 2005
Oct 20, 2005
50
Uint32 Pixel;
Apr 26, 2001
Apr 26, 2001
51
52
53
54
55
56
unsigned sR;
unsigned sG;
unsigned sB;
unsigned dR;
unsigned dG;
unsigned dB;
Oct 20, 2005
Oct 20, 2005
57
DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
Apr 26, 2001
Apr 26, 2001
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
dR = dstfmt->palette->colors[*dst].r;
dG = dstfmt->palette->colors[*dst].g;
dB = dstfmt->palette->colors[*dst].b;
ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB);
dR &= 0xff;
dG &= 0xff;
dB &= 0xff;
/* Pack RGB into 8bit pixel */
if ( palmap == NULL ) {
*dst =((dR>>5)<<(3+2))|
((dG>>5)<<(2))|
((dB>>6)<<(0));
} else {
*dst = palmap[((dR>>5)<<(3+2))|
((dG>>5)<<(2)) |
((dB>>6)<<(0))];
}
dst++;
src += srcbpp;
},
width);
Jul 10, 2006
Jul 10, 2006
79
80
81
82
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
83
84
85
}
/* N->1 blending with pixel alpha */
Jul 10, 2006
Jul 10, 2006
86
87
static void
BlitNto1PixelAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
88
{
Aug 17, 2007
Aug 17, 2007
89
90
91
int width = info->dst_w;
int height = info->dst_h;
Uint8 *src = info->src;
Aug 18, 2007
Aug 18, 2007
92
int srcskip = info->src_skip;
Aug 17, 2007
Aug 17, 2007
93
Uint8 *dst = info->dst;
Aug 18, 2007
Aug 18, 2007
94
int dstskip = info->dst_skip;
Jul 10, 2006
Jul 10, 2006
95
Uint8 *palmap = info->table;
Aug 18, 2007
Aug 18, 2007
96
97
SDL_PixelFormat *srcfmt = info->src_fmt;
SDL_PixelFormat *dstfmt = info->dst_fmt;
Jul 10, 2006
Jul 10, 2006
98
99
100
101
102
int srcbpp = srcfmt->BytesPerPixel;
/* FIXME: fix alpha bit field expansion here too? */
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
103
104
DUFFS_LOOP4(
{
Oct 20, 2005
Oct 20, 2005
105
Uint32 Pixel;
Apr 26, 2001
Apr 26, 2001
106
107
108
109
110
111
112
unsigned sR;
unsigned sG;
unsigned sB;
unsigned sA;
unsigned dR;
unsigned dG;
unsigned dB;
Oct 20, 2005
Oct 20, 2005
113
DISEMBLE_RGBA(src,srcbpp,srcfmt,Pixel,sR,sG,sB,sA);
Apr 26, 2001
Apr 26, 2001
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
dR = dstfmt->palette->colors[*dst].r;
dG = dstfmt->palette->colors[*dst].g;
dB = dstfmt->palette->colors[*dst].b;
ALPHA_BLEND(sR, sG, sB, sA, dR, dG, dB);
dR &= 0xff;
dG &= 0xff;
dB &= 0xff;
/* Pack RGB into 8bit pixel */
if ( palmap == NULL ) {
*dst =((dR>>5)<<(3+2))|
((dG>>5)<<(2))|
((dB>>6)<<(0));
} else {
*dst = palmap[((dR>>5)<<(3+2))|
((dG>>5)<<(2)) |
((dB>>6)<<(0)) ];
}
dst++;
src += srcbpp;
},
width);
Jul 10, 2006
Jul 10, 2006
135
136
137
138
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
139
140
141
}
/* colorkeyed N->1 blending with per-surface alpha */
Jul 10, 2006
Jul 10, 2006
142
143
static void
BlitNto1SurfaceAlphaKey(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
144
{
Aug 17, 2007
Aug 17, 2007
145
146
147
int width = info->dst_w;
int height = info->dst_h;
Uint8 *src = info->src;
Aug 18, 2007
Aug 18, 2007
148
int srcskip = info->src_skip;
Aug 17, 2007
Aug 17, 2007
149
Uint8 *dst = info->dst;
Aug 18, 2007
Aug 18, 2007
150
int dstskip = info->dst_skip;
Jul 10, 2006
Jul 10, 2006
151
Uint8 *palmap = info->table;
Aug 18, 2007
Aug 18, 2007
152
153
SDL_PixelFormat *srcfmt = info->src_fmt;
SDL_PixelFormat *dstfmt = info->dst_fmt;
Jul 10, 2006
Jul 10, 2006
154
int srcbpp = srcfmt->BytesPerPixel;
Aug 18, 2007
Aug 18, 2007
155
Uint32 ckey = info->colorkey;
Jul 10, 2006
Jul 10, 2006
156
Aug 18, 2007
Aug 18, 2007
157
const int A = info->a;
Jul 10, 2006
Jul 10, 2006
158
159
160
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
161
162
DUFFS_LOOP(
{
Oct 20, 2005
Oct 20, 2005
163
Uint32 Pixel;
Apr 26, 2001
Apr 26, 2001
164
165
166
167
168
169
unsigned sR;
unsigned sG;
unsigned sB;
unsigned dR;
unsigned dG;
unsigned dB;
Oct 20, 2005
Oct 20, 2005
170
171
DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
if ( Pixel != ckey ) {
Apr 26, 2001
Apr 26, 2001
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
dR = dstfmt->palette->colors[*dst].r;
dG = dstfmt->palette->colors[*dst].g;
dB = dstfmt->palette->colors[*dst].b;
ALPHA_BLEND(sR, sG, sB, A, dR, dG, dB);
dR &= 0xff;
dG &= 0xff;
dB &= 0xff;
/* Pack RGB into 8bit pixel */
if ( palmap == NULL ) {
*dst =((dR>>5)<<(3+2))|
((dG>>5)<<(2)) |
((dB>>6)<<(0));
} else {
*dst = palmap[((dR>>5)<<(3+2))|
((dG>>5)<<(2)) |
((dB>>6)<<(0)) ];
}
}
dst++;
src += srcbpp;
},
width);
Jul 10, 2006
Jul 10, 2006
194
195
196
197
/* *INDENT-ON* */
src += srcskip;
dst += dstskip;
}
Apr 26, 2001
Apr 26, 2001
198
199
}
Aug 16, 2007
Aug 16, 2007
200
#ifdef __MMX__
Jul 10, 2006
Jul 10, 2006
201
Mar 15, 2006
Mar 15, 2006
202
/* fast RGB888->(A)RGB888 blending with surface alpha=128 special case */
Jul 10, 2006
Jul 10, 2006
203
204
static void
BlitRGBtoRGBSurfaceAlpha128MMX(SDL_BlitInfo * info)
Mar 15, 2006
Mar 15, 2006
205
{
Aug 17, 2007
Aug 17, 2007
206
207
208
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
209
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
210
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
211
212
int dstskip = info->dst_skip >> 2;
Uint32 dalpha = info->dst_fmt->Amask;
Jul 10, 2006
Jul 10, 2006
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
__m64 src1, src2, dst1, dst2, lmask, hmask, dsta;
hmask = _mm_set_pi32(0x00fefefe, 0x00fefefe); /* alpha128 mask -> hmask */
lmask = _mm_set_pi32(0x00010101, 0x00010101); /* !alpha128 mask -> lmask */
dsta = _mm_set_pi32(dalpha, dalpha); /* dst alpha mask -> dsta */
while (height--) {
int n = width;
if (n & 1) {
Uint32 s = *srcp++;
Uint32 d = *dstp;
*dstp++ = ((((s & 0x00fefefe) + (d & 0x00fefefe)) >> 1)
+ (s & d & 0x00010101)) | dalpha;
n--;
}
for (n >>= 1; n > 0; --n) {
dst1 = *(__m64 *) dstp; /* 2 x dst -> dst1(ARGBARGB) */
dst2 = dst1; /* 2 x dst -> dst2(ARGBARGB) */
src1 = *(__m64 *) srcp; /* 2 x src -> src1(ARGBARGB) */
src2 = src1; /* 2 x src -> src2(ARGBARGB) */
dst2 = _mm_and_si64(dst2, hmask); /* dst & mask -> dst2 */
src2 = _mm_and_si64(src2, hmask); /* src & mask -> src2 */
src2 = _mm_add_pi32(src2, dst2); /* dst2 + src2 -> src2 */
src2 = _mm_srli_pi32(src2, 1); /* src2 >> 1 -> src2 */
dst1 = _mm_and_si64(dst1, src1); /* src & dst -> dst1 */
dst1 = _mm_and_si64(dst1, lmask); /* dst1 & !mask -> dst1 */
dst1 = _mm_add_pi32(dst1, src2); /* src2 + dst1 -> dst1 */
dst1 = _mm_or_si64(dst1, dsta); /* dsta(full alpha) | dst1 -> dst1 */
*(__m64 *) dstp = dst1; /* dst1 -> 2 x dst pixels */
dstp += 2;
srcp += 2;
}
srcp += srcskip;
dstp += dstskip;
}
_mm_empty();
Mar 15, 2006
Mar 15, 2006
256
257
258
}
/* fast RGB888->(A)RGB888 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
259
260
static void
BlitRGBtoRGBSurfaceAlphaMMX(SDL_BlitInfo * info)
Mar 15, 2006
Mar 15, 2006
261
{
Aug 18, 2007
Aug 18, 2007
262
SDL_PixelFormat *df = info->dst_fmt;
Jul 10, 2006
Jul 10, 2006
263
Uint32 chanmask = df->Rmask | df->Gmask | df->Bmask;
Aug 18, 2007
Aug 18, 2007
264
unsigned alpha = info->a;
Mar 15, 2006
Mar 15, 2006
265
Jul 10, 2006
Jul 10, 2006
266
267
268
269
if (alpha == 128 && (df->Rmask | df->Gmask | df->Bmask) == 0x00FFFFFF) {
/* only call a128 version when R,G,B occupy lower bits */
BlitRGBtoRGBSurfaceAlpha128MMX(info);
} else {
Aug 17, 2007
Aug 17, 2007
270
271
272
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
273
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
274
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
275
int dstskip = info->dst_skip >> 2;
Jul 10, 2006
Jul 10, 2006
276
277
278
279
280
281
282
283
284
285
Uint32 dalpha = df->Amask;
Uint32 amult;
__m64 src1, src2, dst1, dst2, mm_alpha, mm_zero, dsta;
mm_zero = _mm_setzero_si64(); /* 0 -> mm_zero */
/* form the alpha mult */
amult = alpha | (alpha << 8);
amult = amult | (amult << 16);
chanmask =
Jan 10, 2009
Jan 10, 2009
286
287
(0xff << df->Rshift) | (0xff << df->
Gshift) | (0xff << df->Bshift);
Jul 10, 2006
Jul 10, 2006
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
mm_alpha = _mm_set_pi32(0, amult & chanmask); /* 0000AAAA -> mm_alpha, minus 1 chan */
mm_alpha = _mm_unpacklo_pi8(mm_alpha, mm_zero); /* 0A0A0A0A -> mm_alpha, minus 1 chan */
/* at this point mm_alpha can be 000A0A0A or 0A0A0A00 or another combo */
dsta = _mm_set_pi32(dalpha, dalpha); /* dst alpha mask -> dsta */
while (height--) {
int n = width;
if (n & 1) {
/* One Pixel Blend */
src2 = _mm_cvtsi32_si64(*srcp); /* src(ARGB) -> src2 (0000ARGB) */
src2 = _mm_unpacklo_pi8(src2, mm_zero); /* 0A0R0G0B -> src2 */
dst1 = _mm_cvtsi32_si64(*dstp); /* dst(ARGB) -> dst1 (0000ARGB) */
dst1 = _mm_unpacklo_pi8(dst1, mm_zero); /* 0A0R0G0B -> dst1 */
src2 = _mm_sub_pi16(src2, dst1); /* src2 - dst2 -> src2 */
src2 = _mm_mullo_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_srli_pi16(src2, 8); /* src2 >> 8 -> src2 */
dst1 = _mm_add_pi8(src2, dst1); /* src2 + dst1 -> dst1 */
dst1 = _mm_packs_pu16(dst1, mm_zero); /* 0000ARGB -> dst1 */
dst1 = _mm_or_si64(dst1, dsta); /* dsta | dst1 -> dst1 */
*dstp = _mm_cvtsi64_si32(dst1); /* dst1 -> pixel */
++srcp;
++dstp;
n--;
}
Mar 15, 2006
Mar 15, 2006
317
Jul 10, 2006
Jul 10, 2006
318
319
320
321
322
323
for (n >>= 1; n > 0; --n) {
/* Two Pixels Blend */
src1 = *(__m64 *) srcp; /* 2 x src -> src1(ARGBARGB) */
src2 = src1; /* 2 x src -> src2(ARGBARGB) */
src1 = _mm_unpacklo_pi8(src1, mm_zero); /* low - 0A0R0G0B -> src1 */
src2 = _mm_unpackhi_pi8(src2, mm_zero); /* high - 0A0R0G0B -> src2 */
Mar 15, 2006
Mar 15, 2006
324
Jul 10, 2006
Jul 10, 2006
325
326
327
328
dst1 = *(__m64 *) dstp; /* 2 x dst -> dst1(ARGBARGB) */
dst2 = dst1; /* 2 x dst -> dst2(ARGBARGB) */
dst1 = _mm_unpacklo_pi8(dst1, mm_zero); /* low - 0A0R0G0B -> dst1 */
dst2 = _mm_unpackhi_pi8(dst2, mm_zero); /* high - 0A0R0G0B -> dst2 */
Mar 15, 2006
Mar 15, 2006
329
Jul 10, 2006
Jul 10, 2006
330
331
332
333
src1 = _mm_sub_pi16(src1, dst1); /* src1 - dst1 -> src1 */
src1 = _mm_mullo_pi16(src1, mm_alpha); /* src1 * alpha -> src1 */
src1 = _mm_srli_pi16(src1, 8); /* src1 >> 8 -> src1 */
dst1 = _mm_add_pi8(src1, dst1); /* src1 + dst1(dst1) -> dst1 */
Mar 15, 2006
Mar 15, 2006
334
Jul 10, 2006
Jul 10, 2006
335
336
337
338
src2 = _mm_sub_pi16(src2, dst2); /* src2 - dst2 -> src2 */
src2 = _mm_mullo_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_srli_pi16(src2, 8); /* src2 >> 8 -> src2 */
dst2 = _mm_add_pi8(src2, dst2); /* src2 + dst2(dst2) -> dst2 */
Mar 15, 2006
Mar 15, 2006
339
Jul 10, 2006
Jul 10, 2006
340
341
342
343
344
345
346
347
348
349
350
351
352
dst1 = _mm_packs_pu16(dst1, dst2); /* 0A0R0G0B(res1), 0A0R0G0B(res2) -> dst1(ARGBARGB) */
dst1 = _mm_or_si64(dst1, dsta); /* dsta | dst1 -> dst1 */
*(__m64 *) dstp = dst1; /* dst1 -> 2 x pixel */
srcp += 2;
dstp += 2;
}
srcp += srcskip;
dstp += dstskip;
}
_mm_empty();
}
Mar 15, 2006
Mar 15, 2006
353
354
355
}
/* fast ARGB888->(A)RGB888 blending with pixel alpha */
Jul 10, 2006
Jul 10, 2006
356
357
static void
BlitRGBtoRGBPixelAlphaMMX(SDL_BlitInfo * info)
Mar 15, 2006
Mar 15, 2006
358
{
Aug 17, 2007
Aug 17, 2007
359
360
361
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
362
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
363
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
364
365
int dstskip = info->dst_skip >> 2;
SDL_PixelFormat *sf = info->src_fmt;
Jul 10, 2006
Jul 10, 2006
366
367
368
369
370
371
372
373
Uint32 chanmask = sf->Rmask | sf->Gmask | sf->Bmask;
Uint32 amask = sf->Amask;
Uint32 ashift = sf->Ashift;
Uint64 multmask;
__m64 src1, dst1, mm_alpha, mm_zero, dmask;
mm_zero = _mm_setzero_si64(); /* 0 -> mm_zero */
Aug 17, 2007
Aug 17, 2007
374
multmask = 0xFFFF;
Aug 16, 2007
Aug 16, 2007
375
376
multmask <<= (ashift * 2);
multmask = ~multmask;
Jul 10, 2006
Jul 10, 2006
377
378
379
380
dmask = *(__m64 *) & multmask; /* dst alpha mask -> dmask */
while (height--) {
/* *INDENT-OFF* */
Mar 15, 2006
Mar 15, 2006
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
DUFFS_LOOP4({
Uint32 alpha = *srcp & amask;
if (alpha == 0) {
/* do nothing */
} else if (alpha == amask) {
/* opaque alpha -- copy RGB, keep dst alpha */
*dstp = (*srcp & chanmask) | (*dstp & ~chanmask);
} else {
src1 = _mm_cvtsi32_si64(*srcp); /* src(ARGB) -> src1 (0000ARGB)*/
src1 = _mm_unpacklo_pi8(src1, mm_zero); /* 0A0R0G0B -> src1 */
dst1 = _mm_cvtsi32_si64(*dstp); /* dst(ARGB) -> dst1 (0000ARGB)*/
dst1 = _mm_unpacklo_pi8(dst1, mm_zero); /* 0A0R0G0B -> dst1 */
mm_alpha = _mm_cvtsi32_si64(alpha); /* alpha -> mm_alpha (0000000A) */
mm_alpha = _mm_srli_si64(mm_alpha, ashift); /* mm_alpha >> ashift -> mm_alpha(0000000A) */
mm_alpha = _mm_unpacklo_pi16(mm_alpha, mm_alpha); /* 00000A0A -> mm_alpha */
mm_alpha = _mm_unpacklo_pi32(mm_alpha, mm_alpha); /* 0A0A0A0A -> mm_alpha */
mm_alpha = _mm_and_si64(mm_alpha, dmask); /* 000A0A0A -> mm_alpha, preserve dst alpha on add */
/* blend */
src1 = _mm_sub_pi16(src1, dst1);/* src1 - dst1 -> src1 */
src1 = _mm_mullo_pi16(src1, mm_alpha); /* (src1 - dst1) * alpha -> src1 */
src1 = _mm_srli_pi16(src1, 8); /* src1 >> 8 -> src1(000R0G0B) */
dst1 = _mm_add_pi8(src1, dst1); /* src1 + dst1 -> dst1(0A0R0G0B) */
dst1 = _mm_packs_pu16(dst1, mm_zero); /* 0000ARGB -> dst1 */
*dstp = _mm_cvtsi64_si32(dst1); /* dst1 -> pixel */
}
++srcp;
++dstp;
}, width);
Jul 10, 2006
Jul 10, 2006
413
414
415
416
417
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
_mm_empty();
Mar 15, 2006
Mar 15, 2006
418
}
Jul 10, 2006
Jul 10, 2006
419
Aug 16, 2007
Aug 16, 2007
420
#endif /* __MMX__ */
Aug 22, 2003
Aug 22, 2003
421
Apr 26, 2001
Apr 26, 2001
422
/* fast RGB888->(A)RGB888 blending with surface alpha=128 special case */
Jul 10, 2006
Jul 10, 2006
423
424
static void
BlitRGBtoRGBSurfaceAlpha128(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
425
{
Aug 17, 2007
Aug 17, 2007
426
427
428
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
429
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
430
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
431
int dstskip = info->dst_skip >> 2;
Jul 10, 2006
Jul 10, 2006
432
433
434
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
435
DUFFS_LOOP4({
Apr 26, 2001
Apr 26, 2001
436
437
438
439
Uint32 s = *srcp++;
Uint32 d = *dstp;
*dstp++ = ((((s & 0x00fefefe) + (d & 0x00fefefe)) >> 1)
+ (s & d & 0x00010101)) | 0xff000000;
Apr 26, 2001
Apr 26, 2001
440
}, width);
Jul 10, 2006
Jul 10, 2006
441
442
443
444
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
Apr 26, 2001
Apr 26, 2001
445
446
}
Apr 26, 2001
Apr 26, 2001
447
/* fast RGB888->(A)RGB888 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
448
449
static void
BlitRGBtoRGBSurfaceAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
450
{
Aug 18, 2007
Aug 18, 2007
451
unsigned alpha = info->a;
Jul 10, 2006
Jul 10, 2006
452
453
454
if (alpha == 128) {
BlitRGBtoRGBSurfaceAlpha128(info);
} else {
Aug 17, 2007
Aug 17, 2007
455
456
457
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
458
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
459
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
460
int dstskip = info->dst_skip >> 2;
Jul 10, 2006
Jul 10, 2006
461
462
463
464
465
466
467
Uint32 s;
Uint32 d;
Uint32 s1;
Uint32 d1;
while (height--) {
/* *INDENT-OFF* */
Jan 13, 2009
Jan 13, 2009
468
DUFFS_LOOP4({
Apr 26, 2001
Apr 26, 2001
469
470
471
472
473
474
475
476
477
478
479
480
481
s = *srcp;
d = *dstp;
s1 = s & 0xff00ff;
d1 = d & 0xff00ff;
d1 = (d1 + ((s1 - d1) * alpha >> 8))
& 0xff00ff;
s &= 0xff00;
d &= 0xff00;
d = (d + ((s - d) * alpha >> 8)) & 0xff00;
*dstp = d1 | d | 0xff000000;
++srcp;
++dstp;
}, width);
Jul 10, 2006
Jul 10, 2006
482
483
484
485
486
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
}
Apr 26, 2001
Apr 26, 2001
487
488
}
Apr 26, 2001
Apr 26, 2001
489
/* fast ARGB888->(A)RGB888 blending with pixel alpha */
Jul 10, 2006
Jul 10, 2006
490
491
static void
BlitRGBtoRGBPixelAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
492
{
Aug 17, 2007
Aug 17, 2007
493
494
495
int width = info->dst_w;
int height = info->dst_h;
Uint32 *srcp = (Uint32 *) info->src;
Aug 18, 2007
Aug 18, 2007
496
int srcskip = info->src_skip >> 2;
Aug 17, 2007
Aug 17, 2007
497
Uint32 *dstp = (Uint32 *) info->dst;
Aug 18, 2007
Aug 18, 2007
498
int dstskip = info->dst_skip >> 2;
Jul 10, 2006
Jul 10, 2006
499
500
501
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
502
503
504
505
506
507
508
509
510
511
512
DUFFS_LOOP4({
Uint32 dalpha;
Uint32 d;
Uint32 s1;
Uint32 d1;
Uint32 s = *srcp;
Uint32 alpha = s >> 24;
/* FIXME: Here we special-case opaque alpha since the
compositioning used (>>8 instead of /255) doesn't handle
it correctly. Also special-case alpha=0 for speed?
Benchmark this! */
Aug 22, 2003
Aug 22, 2003
513
514
if(alpha) {
if(alpha == SDL_ALPHA_OPAQUE) {
Apr 26, 2001
Apr 26, 2001
515
*dstp = (s & 0x00ffffff) | (*dstp & 0xff000000);
Aug 22, 2003
Aug 22, 2003
516
} else {
Apr 26, 2001
Apr 26, 2001
517
518
519
520
521
522
523
524
525
526
527
528
529
/*
* take out the middle component (green), and process
* the other two in parallel. One multiply less.
*/
d = *dstp;
dalpha = d & 0xff000000;
s1 = s & 0xff00ff;
d1 = d & 0xff00ff;
d1 = (d1 + ((s1 - d1) * alpha >> 8)) & 0xff00ff;
s &= 0xff00;
d &= 0xff00;
d = (d + ((s - d) * alpha >> 8)) & 0xff00;
*dstp = d1 | d | dalpha;
Aug 22, 2003
Aug 22, 2003
530
}
Apr 26, 2001
Apr 26, 2001
531
532
533
534
}
++srcp;
++dstp;
}, width);
Jul 10, 2006
Jul 10, 2006
535
536
537
538
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
Apr 26, 2001
Apr 26, 2001
539
540
}
Apr 26, 2001
Apr 26, 2001
541
542
543
544
545
546
547
548
549
550
551
/* 16bpp special case for per-surface alpha=50%: blend 2 pixels in parallel */
/* blend a single 16 bit pixel at 50% */
#define BLEND16_50(d, s, mask) \
((((s & mask) + (d & mask)) >> 1) + (s & d & (~mask & 0xffff)))
/* blend two 16 bit pixels at 50% */
#define BLEND2x16_50(d, s, mask) \
(((s & (mask | mask << 16)) >> 1) + ((d & (mask | mask << 16)) >> 1) \
+ (s & d & (~(mask | mask << 16))))
Jul 10, 2006
Jul 10, 2006
552
553
static void
Blit16to16SurfaceAlpha128(SDL_BlitInfo * info, Uint16 mask)
Apr 26, 2001
Apr 26, 2001
554
{
Aug 17, 2007
Aug 17, 2007
555
556
557
int width = info->dst_w;
int height = info->dst_h;
Uint16 *srcp = (Uint16 *) info->src;
Aug 18, 2007
Aug 18, 2007
558
int srcskip = info->src_skip >> 1;
Aug 17, 2007
Aug 17, 2007
559
Uint16 *dstp = (Uint16 *) info->dst;
Aug 18, 2007
Aug 18, 2007
560
int dstskip = info->dst_skip >> 1;
Jul 10, 2006
Jul 10, 2006
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
while (height--) {
if (((uintptr_t) srcp ^ (uintptr_t) dstp) & 2) {
/*
* Source and destination not aligned, pipeline it.
* This is mostly a win for big blits but no loss for
* small ones
*/
Uint32 prev_sw;
int w = width;
/* handle odd destination */
if ((uintptr_t) dstp & 2) {
Uint16 d = *dstp, s = *srcp;
*dstp = BLEND16_50(d, s, mask);
dstp++;
srcp++;
w--;
}
srcp++; /* srcp is now 32-bit aligned */
/* bootstrap pipeline with first halfword */
prev_sw = ((Uint32 *) srcp)[-1];
while (w > 1) {
Uint32 sw, dw, s;
sw = *(Uint32 *) srcp;
dw = *(Uint32 *) dstp;
Feb 26, 2006
Feb 26, 2006
589
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
Jul 10, 2006
Jul 10, 2006
590
s = (prev_sw << 16) + (sw >> 16);
Feb 26, 2006
Feb 26, 2006
591
#else
Jul 10, 2006
Jul 10, 2006
592
s = (prev_sw >> 16) + (sw << 16);
Feb 26, 2006
Feb 26, 2006
593
#endif
Jul 10, 2006
Jul 10, 2006
594
595
596
597
598
599
600
601
602
603
prev_sw = sw;
*(Uint32 *) dstp = BLEND2x16_50(dw, s, mask);
dstp += 2;
srcp += 2;
w -= 2;
}
/* final pixel if any */
if (w) {
Uint16 d = *dstp, s;
Feb 26, 2006
Feb 26, 2006
604
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
Jul 10, 2006
Jul 10, 2006
605
s = (Uint16) prev_sw;
Feb 26, 2006
Feb 26, 2006
606
#else
Jul 10, 2006
Jul 10, 2006
607
s = (Uint16) (prev_sw >> 16);
Feb 26, 2006
Feb 26, 2006
608
#endif
Jul 10, 2006
Jul 10, 2006
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
*dstp = BLEND16_50(d, s, mask);
srcp++;
dstp++;
}
srcp += srcskip - 1;
dstp += dstskip;
} else {
/* source and destination are aligned */
int w = width;
/* first odd pixel? */
if ((uintptr_t) srcp & 2) {
Uint16 d = *dstp, s = *srcp;
*dstp = BLEND16_50(d, s, mask);
srcp++;
dstp++;
w--;
}
/* srcp and dstp are now 32-bit aligned */
while (w > 1) {
Uint32 sw = *(Uint32 *) srcp;
Uint32 dw = *(Uint32 *) dstp;
*(Uint32 *) dstp = BLEND2x16_50(dw, sw, mask);
srcp += 2;
dstp += 2;
w -= 2;
}
/* last odd pixel? */
if (w) {
Uint16 d = *dstp, s = *srcp;
*dstp = BLEND16_50(d, s, mask);
srcp++;
dstp++;
}
srcp += srcskip;
dstp += dstskip;
}
}
Apr 26, 2001
Apr 26, 2001
649
650
}
Aug 16, 2007
Aug 16, 2007
651
#ifdef __MMX__
Jul 10, 2006
Jul 10, 2006
652
Mar 15, 2006
Mar 15, 2006
653
/* fast RGB565->RGB565 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
654
655
static void
Blit565to565SurfaceAlphaMMX(SDL_BlitInfo * info)
Mar 15, 2006
Mar 15, 2006
656
{
Aug 18, 2007
Aug 18, 2007
657
unsigned alpha = info->a;
Jul 10, 2006
Jul 10, 2006
658
659
660
if (alpha == 128) {
Blit16to16SurfaceAlpha128(info, 0xf7de);
} else {
Aug 17, 2007
Aug 17, 2007
661
662
663
int width = info->dst_w;
int height = info->dst_h;
Uint16 *srcp = (Uint16 *) info->src;
Aug 18, 2007
Aug 18, 2007
664
int srcskip = info->src_skip >> 1;
Aug 17, 2007
Aug 17, 2007
665
Uint16 *dstp = (Uint16 *) info->dst;
Aug 18, 2007
Aug 18, 2007
666
int dstskip = info->dst_skip >> 1;
Jul 10, 2006
Jul 10, 2006
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
Uint32 s, d;
__m64 src1, dst1, src2, dst2, gmask, bmask, mm_res, mm_alpha;
alpha &= ~(1 + 2 + 4); /* cut alpha to get the exact same behaviour */
mm_alpha = _mm_set_pi32(0, alpha); /* 0000000A -> mm_alpha */
alpha >>= 3; /* downscale alpha to 5 bits */
mm_alpha = _mm_unpacklo_pi16(mm_alpha, mm_alpha); /* 00000A0A -> mm_alpha */
mm_alpha = _mm_unpacklo_pi32(mm_alpha, mm_alpha); /* 0A0A0A0A -> mm_alpha */
/* position alpha to allow for mullo and mulhi on diff channels
to reduce the number of operations */
mm_alpha = _mm_slli_si64(mm_alpha, 3);
/* Setup the 565 color channel masks */
gmask = _mm_set_pi32(0x07E007E0, 0x07E007E0); /* MASKGREEN -> gmask */
bmask = _mm_set_pi32(0x001F001F, 0x001F001F); /* MASKBLUE -> bmask */
while (height--) {
/* *INDENT-OFF* */
Jan 13, 2009
Jan 13, 2009
687
DUFFS_LOOP_124(
Mar 15, 2006
Mar 15, 2006
688
689
690
691
692
693
694
695
696
697
698
699
{
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x07e0f81f;
d = (d | d << 16) & 0x07e0f81f;
d += (s - d) * alpha >> 5;
d &= 0x07e0f81f;
Mar 16, 2006
Mar 16, 2006
700
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
701
702
703
704
705
706
707
708
709
710
711
712
},{
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x07e0f81f;
d = (d | d << 16) & 0x07e0f81f;
d += (s - d) * alpha >> 5;
d &= 0x07e0f81f;
Mar 16, 2006
Mar 16, 2006
713
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
714
715
716
717
718
719
720
721
722
723
724
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x07e0f81f;
d = (d | d << 16) & 0x07e0f81f;
d += (s - d) * alpha >> 5;
d &= 0x07e0f81f;
Mar 16, 2006
Mar 16, 2006
725
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
},{
src1 = *(__m64*)srcp; /* 4 src pixels -> src1 */
dst1 = *(__m64*)dstp; /* 4 dst pixels -> dst1 */
/* red */
src2 = src1;
src2 = _mm_srli_pi16(src2, 11); /* src2 >> 11 -> src2 [000r 000r 000r 000r] */
dst2 = dst1;
dst2 = _mm_srli_pi16(dst2, 11); /* dst2 >> 11 -> dst2 [000r 000r 000r 000r] */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mullo_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_srli_pi16(src2, 11); /* src2 >> 11 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
dst2 = _mm_slli_pi16(dst2, 11); /* dst2 << 11 -> dst2 */
mm_res = dst2; /* RED -> mm_res */
/* green -- process the bits in place */
src2 = src1;
src2 = _mm_and_si64(src2, gmask); /* src & MASKGREEN -> src2 */
dst2 = dst1;
dst2 = _mm_and_si64(dst2, gmask); /* dst & MASKGREEN -> dst2 */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mulhi_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_slli_pi16(src2, 5); /* src2 << 5 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
mm_res = _mm_or_si64(mm_res, dst2); /* RED | GREEN -> mm_res */
/* blue */
src2 = src1;
src2 = _mm_and_si64(src2, bmask); /* src & MASKBLUE -> src2[000b 000b 000b 000b] */
dst2 = dst1;
dst2 = _mm_and_si64(dst2, bmask); /* dst & MASKBLUE -> dst2[000b 000b 000b 000b] */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mullo_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_srli_pi16(src2, 11); /* src2 >> 11 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
dst2 = _mm_and_si64(dst2, bmask); /* dst2 & MASKBLUE -> dst2 */
mm_res = _mm_or_si64(mm_res, dst2); /* RED | GREEN | BLUE -> mm_res */
*(__m64*)dstp = mm_res; /* mm_res -> 4 dst pixels */
srcp += 4;
dstp += 4;
Jul 10, 2006
Jul 10, 2006
781
782
783
784
785
786
787
}, width);
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
_mm_empty();
}
Mar 15, 2006
Mar 15, 2006
788
789
790
}
/* fast RGB555->RGB555 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
791
792
static void
Blit555to555SurfaceAlphaMMX(SDL_BlitInfo * info)
Mar 15, 2006
Mar 15, 2006
793
{
Aug 18, 2007
Aug 18, 2007
794
unsigned alpha = info->a;
Jul 10, 2006
Jul 10, 2006
795
796
797
if (alpha == 128) {
Blit16to16SurfaceAlpha128(info, 0xfbde);
} else {
Aug 17, 2007
Aug 17, 2007
798
799
800
int width = info->dst_w;
int height = info->dst_h;
Uint16 *srcp = (Uint16 *) info->src;
Aug 18, 2007
Aug 18, 2007
801
int srcskip = info->src_skip >> 1;
Aug 17, 2007
Aug 17, 2007
802
Uint16 *dstp = (Uint16 *) info->dst;
Aug 18, 2007
Aug 18, 2007
803
int dstskip = info->dst_skip >> 1;
Jul 10, 2006
Jul 10, 2006
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
Uint32 s, d;
__m64 src1, dst1, src2, dst2, rmask, gmask, bmask, mm_res, mm_alpha;
alpha &= ~(1 + 2 + 4); /* cut alpha to get the exact same behaviour */
mm_alpha = _mm_set_pi32(0, alpha); /* 0000000A -> mm_alpha */
alpha >>= 3; /* downscale alpha to 5 bits */
mm_alpha = _mm_unpacklo_pi16(mm_alpha, mm_alpha); /* 00000A0A -> mm_alpha */
mm_alpha = _mm_unpacklo_pi32(mm_alpha, mm_alpha); /* 0A0A0A0A -> mm_alpha */
/* position alpha to allow for mullo and mulhi on diff channels
to reduce the number of operations */
mm_alpha = _mm_slli_si64(mm_alpha, 3);
/* Setup the 555 color channel masks */
rmask = _mm_set_pi32(0x7C007C00, 0x7C007C00); /* MASKRED -> rmask */
gmask = _mm_set_pi32(0x03E003E0, 0x03E003E0); /* MASKGREEN -> gmask */
bmask = _mm_set_pi32(0x001F001F, 0x001F001F); /* MASKBLUE -> bmask */
while (height--) {
/* *INDENT-OFF* */
Jan 13, 2009
Jan 13, 2009
825
DUFFS_LOOP_124(
Mar 15, 2006
Mar 15, 2006
826
827
828
829
830
831
832
833
834
835
836
837
{
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x03e07c1f;
d = (d | d << 16) & 0x03e07c1f;
d += (s - d) * alpha >> 5;
d &= 0x03e07c1f;
Mar 16, 2006
Mar 16, 2006
838
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
839
840
841
842
843
844
845
846
847
848
849
850
},{
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x03e07c1f;
d = (d | d << 16) & 0x03e07c1f;
d += (s - d) * alpha >> 5;
d &= 0x03e07c1f;
Mar 16, 2006
Mar 16, 2006
851
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
852
853
854
855
856
857
858
859
860
861
862
s = *srcp++;
d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x03e07c1f;
d = (d | d << 16) & 0x03e07c1f;
d += (s - d) * alpha >> 5;
d &= 0x03e07c1f;
Mar 16, 2006
Mar 16, 2006
863
*dstp++ = (Uint16)(d | d >> 16);
Mar 15, 2006
Mar 15, 2006
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
},{
src1 = *(__m64*)srcp; /* 4 src pixels -> src1 */
dst1 = *(__m64*)dstp; /* 4 dst pixels -> dst1 */
/* red -- process the bits in place */
src2 = src1;
src2 = _mm_and_si64(src2, rmask); /* src & MASKRED -> src2 */
dst2 = dst1;
dst2 = _mm_and_si64(dst2, rmask); /* dst & MASKRED -> dst2 */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mulhi_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_slli_pi16(src2, 5); /* src2 << 5 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
dst2 = _mm_and_si64(dst2, rmask); /* dst2 & MASKRED -> dst2 */
mm_res = dst2; /* RED -> mm_res */
/* green -- process the bits in place */
src2 = src1;
src2 = _mm_and_si64(src2, gmask); /* src & MASKGREEN -> src2 */
dst2 = dst1;
dst2 = _mm_and_si64(dst2, gmask); /* dst & MASKGREEN -> dst2 */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mulhi_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_slli_pi16(src2, 5); /* src2 << 5 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
mm_res = _mm_or_si64(mm_res, dst2); /* RED | GREEN -> mm_res */
/* blue */
src2 = src1; /* src -> src2 */
src2 = _mm_and_si64(src2, bmask); /* src & MASKBLUE -> src2[000b 000b 000b 000b] */
dst2 = dst1; /* dst -> dst2 */
dst2 = _mm_and_si64(dst2, bmask); /* dst & MASKBLUE -> dst2[000b 000b 000b 000b] */
/* blend */
src2 = _mm_sub_pi16(src2, dst2);/* src - dst -> src2 */
src2 = _mm_mullo_pi16(src2, mm_alpha); /* src2 * alpha -> src2 */
src2 = _mm_srli_pi16(src2, 11); /* src2 >> 11 -> src2 */
dst2 = _mm_add_pi16(src2, dst2); /* src2 + dst2 -> dst2 */
dst2 = _mm_and_si64(dst2, bmask); /* dst2 & MASKBLUE -> dst2 */
mm_res = _mm_or_si64(mm_res, dst2); /* RED | GREEN | BLUE -> mm_res */
*(__m64*)dstp = mm_res; /* mm_res -> 4 dst pixels */
srcp += 4;
dstp += 4;
Jul 10, 2006
Jul 10, 2006
919
920
921
922
923
924
925
}, width);
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
_mm_empty();
}
Mar 15, 2006
Mar 15, 2006
926
}
Aug 16, 2007
Aug 16, 2007
927
928
#endif /* __MMX__ */
Aug 22, 2003
Aug 22, 2003
929
Apr 26, 2001
Apr 26, 2001
930
/* fast RGB565->RGB565 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
931
932
static void
Blit565to565SurfaceAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
933
{
Aug 18, 2007
Aug 18, 2007
934
unsigned alpha = info->a;
Jul 10, 2006
Jul 10, 2006
935
936
937
if (alpha == 128) {
Blit16to16SurfaceAlpha128(info, 0xf7de);
} else {
Aug 17, 2007
Aug 17, 2007
938
939
940
int width = info->dst_w;
int height = info->dst_h;
Uint16 *srcp = (Uint16 *) info->src;
Aug 18, 2007
Aug 18, 2007
941
int srcskip = info->src_skip >> 1;
Aug 17, 2007
Aug 17, 2007
942
Uint16 *dstp = (Uint16 *) info->dst;
Aug 18, 2007
Aug 18, 2007
943
int dstskip = info->dst_skip >> 1;
Jul 10, 2006
Jul 10, 2006
944
945
946
947
alpha >>= 3; /* downscale alpha to 5 bits */
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
948
949
950
951
952
953
954
955
956
957
958
959
DUFFS_LOOP4({
Uint32 s = *srcp++;
Uint32 d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x07e0f81f;
d = (d | d << 16) & 0x07e0f81f;
d += (s - d) * alpha >> 5;
d &= 0x07e0f81f;
Feb 24, 2006
Feb 24, 2006
960
*dstp++ = (Uint16)(d | d >> 16);
Apr 26, 2001
Apr 26, 2001
961
}, width);
Jul 10, 2006
Jul 10, 2006
962
963
964
965
966
/* *INDENT-ON* */
srcp += srcskip;
dstp += dstskip;
}
}
Apr 26, 2001
Apr 26, 2001
967
968
969
}
/* fast RGB555->RGB555 blending with surface alpha */
Jul 10, 2006
Jul 10, 2006
970
971
static void
Blit555to555SurfaceAlpha(SDL_BlitInfo * info)
Apr 26, 2001
Apr 26, 2001
972
{
Aug 18, 2007
Aug 18, 2007
973
unsigned alpha = info->a; /* downscale alpha to 5 bits */
Jul 10, 2006
Jul 10, 2006
974
975
976
if (alpha == 128) {
Blit16to16SurfaceAlpha128(info, 0xfbde);
} else {
Aug 17, 2007
Aug 17, 2007
977
978
979
int width = info->dst_w;
int height = info->dst_h;
Uint16 *srcp = (Uint16 *) info->src;
Aug 18, 2007
Aug 18, 2007
980
int srcskip = info->src_skip >> 1;
Aug 17, 2007
Aug 17, 2007
981
Uint16 *dstp = (Uint16 *) info->dst;
Aug 18, 2007
Aug 18, 2007
982
int dstskip = info->dst_skip >> 1;
Jul 10, 2006
Jul 10, 2006
983
984
985
986
alpha >>= 3; /* downscale alpha to 5 bits */
while (height--) {
/* *INDENT-OFF* */
Apr 26, 2001
Apr 26, 2001
987
988
989
990
991
992
993
994
995
996
997
998
DUFFS_LOOP4({
Uint32 s = *srcp++;
Uint32 d = *dstp;
/*
* shift out the middle component (green) to
* the high 16 bits, and process all three RGB
* components at the same time.
*/
s = (s | s << 16) & 0x03e07c1f;
d = (d | d << 16) & 0x03e07c1f;
d += (s - d) * alpha >> 5;
d &= 0x03e07c1f;
Feb 24, 2006
Feb 24, 2006
999
*dstp++ = (Uint16)(d | d >> 16);
Apr 26, 2001
Apr 26, 2001
1000
}, width);