-
Notifications
You must be signed in to change notification settings - Fork 4
/
colorFormatHandlers.c
278 lines (247 loc) · 7.46 KB
/
colorFormatHandlers.c
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#include <string.h>
#include "colorFormatHandlers.h"
#include "colorUtils.h"
void colorFormatHandlerL1BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
for (int j = 0; j != 8; ++j) {
uint8_t const a = ((value<<j)&0x80) ? 0xff : 0x00;
*dst++ = (rgba8888_t){a,a,a,0xff};
}
}
}
void colorFormatHandlerL1LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
for (int j = 0; j != 8; ++j) {
uint8_t const a = ((value>>j)&0x01) ? 0xff : 0x00;
*dst++ = (rgba8888_t){a,a,a,0xff};
}
}
}
void colorFormatHandlerL2BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
uint8_t const a = expand2((value >> 6) & 0x3);
uint8_t const b = expand2((value >> 4) & 0x3);
uint8_t const c = expand2((value >> 2) & 0x3);
uint8_t const d = expand2(value & 0x3);
*dst++ = (rgba8888_t){a,a,a,0xff};
*dst++ = (rgba8888_t){b,b,b,0xff};
*dst++ = (rgba8888_t){c,c,c,0xff};
*dst++ = (rgba8888_t){d,d,d,0xff};
}
}
void colorFormatHandlerL2LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
uint8_t const a = expand2((value >> 6) & 0x3);
uint8_t const b = expand2((value >> 4) & 0x3);
uint8_t const c = expand2((value >> 2) & 0x3);
uint8_t const d = expand2(value & 0x3);
*dst++ = (rgba8888_t){d,d,d,0xff};
*dst++ = (rgba8888_t){c,c,c,0xff};
*dst++ = (rgba8888_t){b,b,b,0xff};
*dst++ = (rgba8888_t){a,a,a,0xff};
}
}
void colorFormatHandlerL4BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
uint8_t const hi = expand4(value >> 4);
uint8_t const lo = expand4(value & 0xf);
*dst++ = (rgba8888_t){hi,hi,hi,0xff};
*dst++ = (rgba8888_t){lo,lo,lo,0xff};
}
}
void colorFormatHandlerL4LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0;) {
uint8_t const value = *src++;
uint8_t const hi = expand4(value >> 4);
uint8_t const lo = expand4(value & 0xf);
*dst++ = (rgba8888_t){lo,lo,lo,0xff};
*dst++ = (rgba8888_t){hi,hi,hi,0xff};
}
}
void colorFormatHandlerL8(rgba8888_t* dst, uint8_t const* src, int numBytes) {
for (int i = numBytes; i-- != 0; ++dst, ++src) {
*dst = (rgba8888_t){*src,*src,*src,0xff};
}
}
void colorFormatHandlerRGB565BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertRGB565(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerRGB565LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertRGB565(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerBGR565BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertBGR565(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerBGR565LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertBGR565(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerARGB1555BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertARGB1555(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerARGB1555LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertARGB1555(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerABGR1555BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertABGR1555(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerABGR1555LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertABGR1555(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerXRGB1555BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertXRGB1555(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerXRGB1555LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertXRGB1555(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerXBGR1555BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertXBGR1555(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerXBGR1555LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertXBGR1555(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerARGB4444BE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertARGB4444(readU16BE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerARGB4444LE(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 2) {
*dst++ = convertARGB4444(readU16LE(&src));
numBytes -= 2;
}
}
void colorFormatHandlerRGB888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 3) {
uint8_t const r = *src++;
uint8_t const g = *src++;
uint8_t const b = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 3;
}
}
void colorFormatHandlerBGR888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 3) {
uint8_t const b = *src++;
uint8_t const g = *src++;
uint8_t const r = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 3;
}
}
void colorFormatHandlerARGB8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
uint8_t const a = *src++;
uint8_t const r = *src++;
uint8_t const g = *src++;
uint8_t const b = *src++;
*dst++ = (rgba8888_t){r,g,b,a};
numBytes -= 4;
}
}
void colorFormatHandlerABGR8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
uint8_t const a = *src++;
uint8_t const b = *src++;
uint8_t const g = *src++;
uint8_t const r = *src++;
*dst++ = (rgba8888_t){r,g,b,a};
numBytes -= 4;
}
}
void colorFormatHandlerRGBA8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
// special case for this layout
numBytes -= (numBytes % 4);
memcpy(dst, src, numBytes);
}
void colorFormatHandlerBGRA8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
uint8_t const b = *src++;
uint8_t const g = *src++;
uint8_t const r = *src++;
uint8_t const a = *src++;
*dst++ = (rgba8888_t){r,g,b,a};
numBytes -= 4;
}
}
void colorFormatHandlerXRGB8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
++src; //uint8_t const x = *src++;
uint8_t const r = *src++;
uint8_t const g = *src++;
uint8_t const b = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 4;
}
}
void colorFormatHandlerXBGR8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
++src; //uint8_t const x = *src++;
uint8_t const b = *src++;
uint8_t const g = *src++;
uint8_t const r = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 4;
}
}
void colorFormatHandlerRGBX8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
uint8_t const r = *src++;
uint8_t const g = *src++;
uint8_t const b = *src++;
++src; //uint8_t const x = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 4;
}
}
void colorFormatHandlerBGRX8888(rgba8888_t* dst, uint8_t const* src, int numBytes) {
while (numBytes >= 4) {
uint8_t const b = *src++;
uint8_t const g = *src++;
uint8_t const r = *src++;
++src; //uint8_t const x = *src++;
*dst++ = (rgba8888_t){r,g,b,0xff};
numBytes -= 4;
}
}