64 |
|
#define FB_BLIT_2(dst, src) \ |
65 |
|
(dst = (((src) >> 8) & 0x00ff00ff) | (((src) & 0x00ff00ff) << 8)) |
66 |
|
|
67 |
+ |
#define FB_BLIT_4(dst, src) \ |
68 |
+ |
(dst = (((src) >> 8) & UVAL64(0x00ff00ff00ff00ff)) | \ |
69 |
+ |
(((src) & UVAL64(0x00ff00ff00ff00ff)) << 8)) |
70 |
+ |
|
71 |
|
#define FB_DEPTH 15 |
72 |
|
#include "video_blit.h" |
73 |
|
|
85 |
|
#define FB_BLIT_2(dst, src) \ |
86 |
|
(dst = (((src) >> 10) & 0x001f001f) | ((src) & 0x03e003e0) | (((src) << 10) & 0x7c007c00)) |
87 |
|
|
88 |
+ |
#define FB_BLIT_4(dst, src) \ |
89 |
+ |
(dst = (((src) >> 10) & UVAL64(0x001f001f001f001f)) | \ |
90 |
+ |
( (src) & UVAL64(0x03e003e003e003e0)) | \ |
91 |
+ |
(((src) << 10) & UVAL64(0x7c007c007c007c00))) |
92 |
+ |
|
93 |
|
#define FB_DEPTH 15 |
94 |
|
#define FB_FUNC_NAME Blit_BGR555_NBO |
95 |
|
#include "video_blit.h" |
102 |
|
#define FB_BLIT_2(dst, src) \ |
103 |
|
(dst = (((src) >> 2) & 0x1f001f00) | (((src) >> 8) & 0x30003) | (((src) << 8) & 0xe000e000) | (((src) << 2) & 0x7c007c)) |
104 |
|
|
105 |
+ |
#define FB_BLIT_4(dst, src) \ |
106 |
+ |
(dst = (((src) >> 2) & UVAL64(0x1f001f001f001f00)) | \ |
107 |
+ |
(((src) >> 8) & UVAL64(0x0003000300030003)) | \ |
108 |
+ |
(((src) << 8) & UVAL64(0xe000e000e000e000)) | \ |
109 |
+ |
(((src) << 2) & UVAL64(0x007c007c007c007c))) |
110 |
+ |
|
111 |
|
#define FB_DEPTH 15 |
112 |
|
#define FB_FUNC_NAME Blit_BGR555_OBO |
113 |
|
#include "video_blit.h" |
122 |
|
#define FB_BLIT_2(dst, src) \ |
123 |
|
(dst = (((src) >> 2) & 0x1f001f) | (((src) >> 8) & 0xe000e0) | (((src) << 8) & 0x03000300) | (((src) << 2) & 0x7c007c00)) |
124 |
|
|
125 |
+ |
#define FB_BLIT_4(dst, src) \ |
126 |
+ |
(dst = (((src) >> 2) & UVAL64(0x001f001f001f001f)) | \ |
127 |
+ |
(((src) >> 8) & UVAL64(0x00e000e000e000e0)) | \ |
128 |
+ |
(((src) << 8) & UVAL64(0x0300030003000300)) | \ |
129 |
+ |
(((src) << 2) & UVAL64(0x7c007c007c007c00))) |
130 |
+ |
|
131 |
|
#define FB_DEPTH 15 |
132 |
|
#define FB_FUNC_NAME Blit_BGR555_NBO |
133 |
|
#include "video_blit.h" |
140 |
|
#define FB_BLIT_2(dst, src) \ |
141 |
|
(dst = (((src) << 6) & 0x1f001f00) | ((src) & 0xe003e003) | (((src) >> 6) & 0x7c007c)) |
142 |
|
|
143 |
+ |
#define FB_BLIT_4(dst, src) \ |
144 |
+ |
(dst = (((src) << 6) & UVAL64(0x1f001f001f001f00)) | \ |
145 |
+ |
( (src) & UVAL64(0xe003e003e003e003)) | \ |
146 |
+ |
(((src) >> 6) & UVAL64(0x007c007c007c007c))) |
147 |
+ |
|
148 |
|
#define FB_DEPTH 15 |
149 |
|
#define FB_FUNC_NAME Blit_BGR555_OBO |
150 |
|
#include "video_blit.h" |
165 |
|
#define FB_BLIT_2(dst, src) \ |
166 |
|
(dst = (((src) & 0x001f001f) | (((src) << 1) & 0xffc0ffc0))) |
167 |
|
|
168 |
+ |
#define FB_BLIT_4(dst, src) \ |
169 |
+ |
(dst = (((src) & UVAL64(0x001f001f001f001f)) | \ |
170 |
+ |
(((src) << 1) & UVAL64(0xffc0ffc0ffc0ffc0)))) |
171 |
+ |
|
172 |
|
#define FB_DEPTH 16 |
173 |
|
#define FB_FUNC_NAME Blit_RGB565_NBO |
174 |
|
#include "video_blit.h" |
181 |
|
#define FB_BLIT_2(dst, src) \ |
182 |
|
(dst = ((((src) >> 7) & 0x00ff00ff) | (((src) << 9) & 0xc000c000) | (((src) << 8) & 0x1f001f00))) |
183 |
|
|
184 |
+ |
#define FB_BLIT_4(dst, src) \ |
185 |
+ |
(dst = (((src) >> 7) & UVAL64(0x00ff00ff00ff00ff)) | \ |
186 |
+ |
(((src) << 9) & UVAL64(0xc000c000c000c000)) | \ |
187 |
+ |
(((src) << 8) & UVAL64(0x1f001f001f001f00))) |
188 |
+ |
|
189 |
|
#define FB_DEPTH 16 |
190 |
|
#define FB_FUNC_NAME Blit_RGB565_OBO |
191 |
|
#include "video_blit.h" |
197 |
|
#define FB_BLIT_1(dst, src) \ |
198 |
|
(dst = (((src) >> 8) & 0x001f) | (((src) << 9) & 0xfe00) | (((src) >> 7) & 0x01c0)) |
199 |
|
|
165 |
– |
// gb-- Disabled because I don't see any improvement |
166 |
– |
#if 0 && defined(__i386__) && defined(X86_ASSEMBLY) |
167 |
– |
|
168 |
– |
#define FB_BLIT_2(dst, src) \ |
169 |
– |
__asm__ ( "movl %0,%%ebx\n\t" \ |
170 |
– |
"movl %0,%%ebp\n\t" \ |
171 |
– |
"andl $0x1f001f00,%%ebx\n\t" \ |
172 |
– |
"andl $0x007f007f,%0\n\t" \ |
173 |
– |
"andl $0xe000e000,%%ebp\n\t" \ |
174 |
– |
"shrl $8,%%ebx\n\t" \ |
175 |
– |
"shrl $7,%%ebp\n\t" \ |
176 |
– |
"shll $9,%0\n\t" \ |
177 |
– |
"orl %%ebx,%%ebp\n\t" \ |
178 |
– |
"orl %%ebp,%0\n\t" \ |
179 |
– |
: "=r" (dst) : "0" (src) : "ebx", "ebp", "cc" ) |
180 |
– |
|
181 |
– |
#else |
182 |
– |
|
200 |
|
#define FB_BLIT_2(dst, src) \ |
201 |
|
(dst = (((src) >> 8) & 0x001f001f) | (((src) << 9) & 0xfe00fe00) | (((src) >> 7) & 0x01c001c0)) |
202 |
|
|
203 |
< |
#endif |
203 |
> |
#define FB_BLIT_4(dst, src) \ |
204 |
> |
(dst = (((src) >> 8) & UVAL64(0x001f001f001f001f)) | \ |
205 |
> |
(((src) << 9) & UVAL64(0xfe00fe00fe00fe00)) | \ |
206 |
> |
(((src) >> 7) & UVAL64(0x01c001c001c001c0))) |
207 |
|
|
208 |
|
#define FB_DEPTH 16 |
209 |
|
#define FB_FUNC_NAME Blit_RGB565_NBO |
217 |
|
#define FB_BLIT_2(dst, src) \ |
218 |
|
(dst = (((src) & 0x1f001f00) | (((src) << 1) & 0xe0fee0fe) | (((src) >> 15) & 0x10001))) |
219 |
|
|
220 |
+ |
#define FB_BLIT_4(dst, src) \ |
221 |
+ |
(dst = (((src) & UVAL64(0x1f001f001f001f00)) | \ |
222 |
+ |
(((src) << 1) & UVAL64(0xe0fee0fee0fee0fe)) | \ |
223 |
+ |
(((src) >> 15) & UVAL64(0x0001000100010001)))) |
224 |
+ |
|
225 |
|
#define FB_DEPTH 16 |
226 |
|
#define FB_FUNC_NAME Blit_RGB565_OBO |
227 |
|
#include "video_blit.h" |
241 |
|
#define FB_BLIT_2(dst, src) \ |
242 |
|
(dst = (((src) >> 24) & 0xff) | (((src) >> 8) & 0xff00) | (((src) & 0xff00) << 8) | (((src) & 0xff) << 24)) |
243 |
|
|
244 |
+ |
#define FB_BLIT_4(dst, src) \ |
245 |
+ |
(dst = (((src) >> 24) & UVAL64(0x000000ff000000ff)) | \ |
246 |
+ |
(((src) >> 8) & UVAL64(0x0000ff000000ff00)) | \ |
247 |
+ |
(((src) & UVAL64(0x0000ff000000ff00)) << 8) | \ |
248 |
+ |
(((src) & UVAL64(0x000000ff000000ff)) << 24)) |
249 |
+ |
|
250 |
|
#define FB_DEPTH 24 |
251 |
|
#include "video_blit.h" |
252 |
|
|
261 |
|
#define FB_BLIT_2(dst, src) \ |
262 |
|
(dst = (((src) >> 16) & 0xff) | ((src) & 0xff00) | (((src) & 0xff) << 16)) |
263 |
|
|
264 |
+ |
#define FB_BLIT_4(dst, src) \ |
265 |
+ |
(dst = (((src) >> 16) & UVAL64(0x000000ff000000ff)) | \ |
266 |
+ |
( (src) & UVAL64(0x0000ff000000ff00)) | \ |
267 |
+ |
(((src) & UVAL64(0x000000ff000000ff)) << 16)) |
268 |
+ |
|
269 |
|
#define FB_FUNC_NAME Blit_BGR888_NBO |
270 |
|
#define FB_DEPTH 24 |
271 |
|
#include "video_blit.h" |
277 |
|
#define FB_BLIT_2(dst, src) \ |
278 |
|
(dst = (((src) >> 16) & 0xff) | ((src) & 0xff0000) | (((src) & 0xff) << 16)) |
279 |
|
|
280 |
+ |
#define FB_BLIT_4(dst, src) \ |
281 |
+ |
(dst = (((src) >> 16) & UVAL64(0x000000ff000000ff)) | \ |
282 |
+ |
( (src) & UVAL64(0x00ff000000ff0000)) | \ |
283 |
+ |
(((src) & UVAL64(0x000000ff000000ff)) << 16)) |
284 |
+ |
|
285 |
|
#define FB_FUNC_NAME Blit_BGR888_OBO |
286 |
|
#define FB_DEPTH 24 |
287 |
|
#include "video_blit.h" |
299 |
|
#define FB_BLIT_2(dst, src) \ |
300 |
|
(dst = ((src) & 0xff00ff) | (((src) & 0xff00) << 16)) |
301 |
|
|
302 |
+ |
#define FB_BLIT_4(dst, src) \ |
303 |
+ |
(dst = ((src) & UVAL64(0x00ff00ff00ff00ff)) | (((src) & UVAL64(0x0000ff000000ff00)) << 16)) |
304 |
+ |
|
305 |
|
#define FB_DEPTH 24 |
306 |
|
#include "video_blit.h" |
307 |
|
|