1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
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
256
257
258
259
260
261
262
|
#include "fitz.h"
typedef unsigned char byte;
/*
* Blend pixmap regions
*/
/* dst = src over dst */
static void
duff_non(byte * restrict sp, int sw, int sn, byte * restrict dp, int dw, int w0, int h)
{
int k;
sw -= w0*sn;
dw -= w0*sn;
while (h--)
{
int w = w0;
while (w--)
{
/* RJW: Alpha handling suspicious here; sp[0] counts twice */
int sa = FZ_EXPAND(sp[0]);
for (k = 0; k < sn; k++)
{
dp[k] = FZ_BLEND(sp[k], dp[k], sa);
}
sp += sn;
dp += sn;
}
sp += sw;
dp += dw;
}
}
/* dst = src in msk over dst */
static void
duff_nimon(byte * restrict sp, int sw, int sn, byte * restrict mp, int mw, int mn, byte * restrict dp, int dw, int w0, int h)
{
int k;
sw -= w0*sn;
mw -= w0*mn;
dw -= w0*sn;
while (h--)
{
int w = w0;
while (w--)
{
/* TODO: validate this */
int ma = FZ_COMBINE(FZ_EXPAND(mp[0]), FZ_EXPAND(sp[0]));
for (k = 0; k < sn; k++)
{
dp[k] = FZ_BLEND(sp[k], dp[k], ma);
}
sp += sn;
mp += mn;
dp += sn;
}
sp += sw;
mp += mw;
dp += dw;
}
}
static void
duff_1o1(byte * restrict sp, int sw, byte * restrict dp, int dw, int w0, int h)
{
/* duff_non(sp0, sw, 1, dp0, dw, w0, h); */
sw -= w0;
dw -= w0;
while (h--)
{
int w = w0;
while (w--)
{
dp[0] = FZ_BLEND(255, dp[0], FZ_EXPAND(sp[0]));
sp ++;
dp ++;
}
sp += sw;
dp += dw;
}
}
static void
duff_4o4(byte *sp, int sw, byte *dp, int dw, int w0, int h)
{
/* duff_non(sp0, sw, 4, dp0, dw, w0, h); */
sw -= w0<<2;
dw -= w0<<2;
while (h--)
{
int w = w0;
while (w--)
{
int alpha = FZ_EXPAND(sp[0]);
dp[0] = FZ_BLEND(sp[0], dp[0], alpha);
dp[1] = FZ_BLEND(sp[1], dp[1], alpha);
dp[2] = FZ_BLEND(sp[2], dp[2], alpha);
dp[3] = FZ_BLEND(sp[3], dp[3], alpha);
sp += 4;
dp += 4;
}
sp += sw;
dp += dw;
}
}
static void
duff_1i1o1(byte * restrict sp, int sw, byte * restrict mp, int mw, byte * restrict dp, int dw, int w0, int h)
{
/* duff_nimon(sp0, sw, 1, mp0, mw, 1, dp0, dw, w0, h); */
sw -= w0;
mw -= w0;
dw -= w0;
while (h--)
{
int w = w0;
while (w--)
{
int ma = FZ_COMBINE(FZ_EXPAND(mp[0]), FZ_EXPAND(sp[0]));
dp[0] = FZ_BLEND(255, dp[0], ma);
sp ++;
mp ++;
dp ++;
}
sp += sw;
mp += mw;
dp += dw;
}
}
static void
duff_4i1o4(byte * restrict sp, int sw, byte * restrict mp, int mw, byte * restrict dp, int dw, int w0, int h)
{
/* duff_nimon(sp, sw, 4, mp, mw, 1, dp, dw, w0, h); */
sw -= w0<<2;
dw -= w0<<2;
mw -= w0;
while (h--)
{
int w = w0;
while (w--)
{
int ma = FZ_COMBINE(FZ_EXPAND(mp[0]), FZ_EXPAND(sp[0]));
dp[0] = FZ_BLEND(255, dp[0], ma);
dp[1] = FZ_BLEND(sp[1], dp[1], ma);
dp[2] = FZ_BLEND(sp[2], dp[2], ma);
dp[3] = FZ_BLEND(sp[3], dp[3], ma);
sp += 4;
mp += 1;
dp += 4;
}
sp += sw;
mp += mw;
dp += dw;
}
}
/*
* Path masks
*/
static void
path_1o1(byte * restrict src, byte cov, int len, byte * restrict dst)
{
while (len--)
{
int c;
cov += *src; *src = 0; src++;
c = FZ_EXPAND(cov);
dst[0] = FZ_BLEND(255, dst[0], c);
dst++;
}
}
static void
path_w4i1o4(byte * restrict argb, byte * restrict src, byte cov, int len, byte * restrict dst)
{
int alpha = FZ_EXPAND(argb[0]);
byte r = argb[1];
byte g = argb[2];
byte b = argb[3];
while (len--)
{
int ca;
cov += *src; *src = 0; src++;
ca = FZ_COMBINE(FZ_EXPAND(cov), alpha);
dst[0] = FZ_BLEND(255, dst[0], ca);
dst[1] = FZ_BLEND(r, dst[1], ca);
dst[2] = FZ_BLEND(g, dst[2], ca);
dst[3] = FZ_BLEND(b, dst[3], ca);
dst += 4;
}
}
/*
* Text masks
*/
static void
text_1o1(byte * restrict src, int srcw, byte * restrict dst, int dstw, int w0, int h)
{
srcw -= w0;
dstw -= w0;
while (h--)
{
int w = w0;
while (w--)
{
int c = FZ_EXPAND(src[0]);
dst[0] = FZ_BLEND(255, dst[0], c);
src++;
dst++;
}
src += srcw;
dst += dstw;
}
}
static void
text_w4i1o4(byte * restrict argb, byte * restrict src, int srcw, byte * restrict dst, int dstw, int w0, int h)
{
int alpha = FZ_EXPAND(argb[0]);
byte r = argb[1];
byte g = argb[2];
byte b = argb[3];
srcw -= w0;
dstw -= w0<<2;
while (h--)
{
int w = w0;
while (w--)
{
int c = FZ_COMBINE(FZ_EXPAND(src[0]), alpha);
dst[0] = FZ_BLEND(255, dst[0], c);
dst[1] = FZ_BLEND(r, dst[1], c);
dst[2] = FZ_BLEND(g, dst[2], c);
dst[3] = FZ_BLEND(b, dst[3], c);
src ++;
dst += 4;
}
src += srcw;
dst += dstw;
}
}
/*
* ... and the function pointers
*/
void (*fz_duff_non)(byte*,int,int,byte*,int,int,int) = duff_non;
void (*fz_duff_nimon)(byte*,int,int,byte*,int,int,byte*,int,int,int) = duff_nimon;
void (*fz_duff_1o1)(byte*,int,byte*,int,int,int) = duff_1o1;
void (*fz_duff_4o4)(byte*,int,byte*,int,int,int) = duff_4o4;
void (*fz_duff_1i1o1)(byte*,int,byte*,int,byte*,int,int,int) = duff_1i1o1;
void (*fz_duff_4i1o4)(byte*,int,byte*,int,byte*,int,int,int) = duff_4i1o4;
void (*fz_path_1o1)(byte*,byte,int,byte*) = path_1o1;
void (*fz_path_w4i1o4)(byte*,byte*,byte,int,byte*) = path_w4i1o4;
void (*fz_text_1o1)(byte*,int,byte*,int,int,int) = text_1o1;
void (*fz_text_w4i1o4)(byte*,byte*,int,byte*,int,int,int) = text_w4i1o4;
|