]> Dogcows Code - chaz/openbox/blob - render/gradient.c
don't alloc/free colors every time splitvertical is drawn
[chaz/openbox] / render / gradient.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 gradient.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
6 Copyright (c) 2003 Derek Foreman
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 See the COPYING file for a copy of the GNU General Public License.
19 */
20
21 #include "render.h"
22 #include "gradient.h"
23 #include "color.h"
24 #include <glib.h>
25
26 static void highlight(RrSurface *s, RrPixel32 *x, RrPixel32 *y, gboolean raised);
27 static void gradient_parentrelative(RrAppearance *a, gint w, gint h);
28 static void gradient_solid(RrAppearance *l, gint w, gint h);
29 static void gradient_splitvertical(RrAppearance *a, gint w, gint h);
30 static void gradient_vertical(RrSurface *sf, gint w, gint h);
31 static void gradient_horizontal(RrSurface *sf, gint w, gint h);
32 static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h);
33 static void gradient_diagonal(RrSurface *sf, gint w, gint h);
34 static void gradient_crossdiagonal(RrSurface *sf, gint w, gint h);
35 static void gradient_pyramid(RrSurface *sf, gint inw, gint inh);
36
37 void RrRender(RrAppearance *a, gint w, gint h)
38 {
39 RrPixel32 *data = a->surface.pixel_data;
40 RrPixel32 current;
41 guint r,g,b;
42 gint off, x;
43
44 switch (a->surface.grad) {
45 case RR_SURFACE_PARENTREL:
46 gradient_parentrelative(a, w, h);
47 break;
48 case RR_SURFACE_SOLID:
49 gradient_solid(a, w, h);
50 break;
51 case RR_SURFACE_SPLIT_VERTICAL:
52 gradient_splitvertical(a, w, h);
53 break;
54 case RR_SURFACE_VERTICAL:
55 gradient_vertical(&a->surface, w, h);
56 break;
57 case RR_SURFACE_HORIZONTAL:
58 gradient_horizontal(&a->surface, w, h);
59 break;
60 case RR_SURFACE_MIRROR_HORIZONTAL:
61 gradient_mirrorhorizontal(&a->surface, w, h);
62 break;
63 case RR_SURFACE_DIAGONAL:
64 gradient_diagonal(&a->surface, w, h);
65 break;
66 case RR_SURFACE_CROSS_DIAGONAL:
67 gradient_crossdiagonal(&a->surface, w, h);
68 break;
69 case RR_SURFACE_PYRAMID:
70 gradient_pyramid(&a->surface, w, h);
71 break;
72 default:
73 g_assert_not_reached(); /* unhandled gradient */
74 return;
75 }
76
77 if (a->surface.interlaced) {
78 gint i;
79 RrPixel32 *p;
80
81 r = a->surface.interlace_color->r;
82 g = a->surface.interlace_color->g;
83 b = a->surface.interlace_color->b;
84 current = (r << RrDefaultRedOffset)
85 + (g << RrDefaultGreenOffset)
86 + (b << RrDefaultBlueOffset);
87 p = data;
88 for (i = 0; i < h; i += 2, p += w)
89 for (x = 0; x < w; ++x, ++p)
90 *p = current;
91 }
92
93 if (a->surface.relief == RR_RELIEF_FLAT && a->surface.border) {
94 r = a->surface.border_color->r;
95 g = a->surface.border_color->g;
96 b = a->surface.border_color->b;
97 current = (r << RrDefaultRedOffset)
98 + (g << RrDefaultGreenOffset)
99 + (b << RrDefaultBlueOffset);
100 for (off = 0, x = 0; x < w; ++x, off++) {
101 *(data + off) = current;
102 *(data + off + ((h-1) * w)) = current;
103 }
104 for (off = 0, x = 0; x < h; ++x, off++) {
105 *(data + (off * w)) = current;
106 *(data + (off * w) + w - 1) = current;
107 }
108 }
109
110 if (a->surface.relief != RR_RELIEF_FLAT) {
111 if (a->surface.bevel == RR_BEVEL_1) {
112 for (off = 1, x = 1; x < w - 1; ++x, off++)
113 highlight(&a->surface, data + off,
114 data + off + (h-1) * w,
115 a->surface.relief==RR_RELIEF_RAISED);
116 for (off = 0, x = 0; x < h; ++x, off++)
117 highlight(&a->surface, data + off * w,
118 data + off * w + w - 1,
119 a->surface.relief==RR_RELIEF_RAISED);
120 }
121
122 if (a->surface.bevel == RR_BEVEL_2) {
123 for (off = 2, x = 2; x < w - 2; ++x, off++)
124 highlight(&a->surface, data + off + w,
125 data + off + (h-2) * w,
126 a->surface.relief==RR_RELIEF_RAISED);
127 for (off = 1, x = 1; x < h-1; ++x, off++)
128 highlight(&a->surface, data + off * w + 1,
129 data + off * w + w - 2,
130 a->surface.relief==RR_RELIEF_RAISED);
131 }
132 }
133 }
134
135 static void highlight(RrSurface *s, RrPixel32 *x, RrPixel32 *y, gboolean raised)
136 {
137 gint r, g, b;
138
139 RrPixel32 *up, *down;
140 if (raised) {
141 up = x;
142 down = y;
143 } else {
144 up = y;
145 down = x;
146 }
147
148 r = (*up >> RrDefaultRedOffset) & 0xFF;
149 r += (r * s->bevel_light_adjust) >> 8;
150 g = (*up >> RrDefaultGreenOffset) & 0xFF;
151 g += (g * s->bevel_light_adjust) >> 8;
152 b = (*up >> RrDefaultBlueOffset) & 0xFF;
153 b += (b * s->bevel_light_adjust) >> 8;
154 if (r > 0xFF) r = 0xFF;
155 if (g > 0xFF) g = 0xFF;
156 if (b > 0xFF) b = 0xFF;
157 *up = (r << RrDefaultRedOffset) + (g << RrDefaultGreenOffset)
158 + (b << RrDefaultBlueOffset);
159
160 r = (*down >> RrDefaultRedOffset) & 0xFF;
161 r -= (r * s->bevel_dark_adjust) >> 8;
162 g = (*down >> RrDefaultGreenOffset) & 0xFF;
163 g -= (g * s->bevel_dark_adjust) >> 8;
164 b = (*down >> RrDefaultBlueOffset) & 0xFF;
165 b -= (b * s->bevel_dark_adjust) >> 8;
166 *down = (r << RrDefaultRedOffset) + (g << RrDefaultGreenOffset)
167 + (b << RrDefaultBlueOffset);
168 }
169
170 static void create_bevel_colors(RrAppearance *l)
171 {
172 gint r, g, b;
173
174 /* light color */
175 r = l->surface.primary->r;
176 r += (r * l->surface.bevel_light_adjust) >> 8;
177 g = l->surface.primary->g;
178 g += (g * l->surface.bevel_light_adjust) >> 8;
179 b = l->surface.primary->b;
180 b += (b * l->surface.bevel_light_adjust) >> 8;
181 if (r > 0xFF) r = 0xFF;
182 if (g > 0xFF) g = 0xFF;
183 if (b > 0xFF) b = 0xFF;
184 g_assert(!l->surface.bevel_light);
185 l->surface.bevel_light = RrColorNew(l->inst, r, g, b);
186
187 /* dark color */
188 r = l->surface.primary->r;
189 r -= (r * l->surface.bevel_dark_adjust) >> 8;
190 g = l->surface.primary->g;
191 g -= (g * l->surface.bevel_dark_adjust) >> 8;
192 b = l->surface.primary->b;
193 b -= (b * l->surface.bevel_dark_adjust) >> 8;
194 g_assert(!l->surface.bevel_dark);
195 l->surface.bevel_dark = RrColorNew(l->inst, r, g, b);
196 }
197
198 static void gradient_parentrelative(RrAppearance *a, gint w, gint h)
199 {
200 RrPixel32 *source, *dest;
201 gint sw, sh, partial_w, partial_h, i;
202
203 g_assert (a->surface.parent);
204 g_assert (a->surface.parent->w);
205
206 sw = a->surface.parent->w;
207 sh = a->surface.parent->h;
208
209 /* This is a little hack. When a texture is parentrelative, and the same
210 area as the parent, and has a bevel, it will draw its bevel on top
211 of the parent's, amplifying it. So instead, rerender the child with
212 the parent's settings, but the child's bevel and interlace */
213 if (a->surface.relief != RR_RELIEF_FLAT &&
214 (a->surface.parent->surface.relief != RR_RELIEF_FLAT ||
215 a->surface.parent->surface.border) &&
216 !a->surface.parentx && !a->surface.parenty &&
217 sw == w && sh == h)
218 {
219 RrSurface old = a->surface;
220 a->surface = a->surface.parent->surface;
221
222 /* turn these off for the parent */
223 a->surface.relief = RR_RELIEF_FLAT;
224 a->surface.border = FALSE;
225
226 a->surface.pixel_data = old.pixel_data;
227
228 RrRender(a, w, h);
229 a->surface = old;
230 } else {
231 source = (a->surface.parent->surface.pixel_data +
232 a->surface.parentx + sw * a->surface.parenty);
233 dest = a->surface.pixel_data;
234
235 if (a->surface.parentx + w > sw) {
236 partial_w = sw - a->surface.parentx;
237 } else partial_w = w;
238
239 if (a->surface.parenty + h > sh) {
240 partial_h = sh - a->surface.parenty;
241 } else partial_h = h;
242
243 for (i = 0; i < partial_h; i++, source += sw, dest += w) {
244 memcpy(dest, source, partial_w * sizeof(RrPixel32));
245 }
246 }
247 }
248
249 static void gradient_solid(RrAppearance *l, gint w, gint h)
250 {
251 gint i;
252 RrPixel32 pix;
253 RrPixel32 *data = l->surface.pixel_data;
254 RrSurface *sp = &l->surface;
255 gint left = 0, top = 0, right = w - 1, bottom = h - 1;
256
257 pix = (sp->primary->r << RrDefaultRedOffset)
258 + (sp->primary->g << RrDefaultGreenOffset)
259 + (sp->primary->b << RrDefaultBlueOffset);
260
261 for (i = 0; i < w * h; i++)
262 *data++ = pix;
263
264 if (sp->interlaced)
265 return;
266
267 XFillRectangle(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->primary),
268 0, 0, w, h);
269
270 switch (sp->relief) {
271 case RR_RELIEF_RAISED:
272 if (!sp->bevel_dark)
273 create_bevel_colors(l);
274
275 switch (sp->bevel) {
276 case RR_BEVEL_1:
277 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
278 left, bottom, right, bottom);
279 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
280 right, bottom, right, top);
281
282 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
283 left, top, right, top);
284 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
285 left, bottom, left, top);
286 break;
287 case RR_BEVEL_2:
288 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
289 left + 2, bottom - 1, right - 2, bottom - 1);
290 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
291 right - 1, bottom - 1, right - 1, top + 1);
292
293 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
294 left + 2, top + 1, right - 2, top + 1);
295 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
296 left + 1, bottom - 1, left + 1, top + 1);
297 break;
298 default:
299 g_assert_not_reached(); /* unhandled BevelType */
300 }
301 break;
302 case RR_RELIEF_SUNKEN:
303 if (!sp->bevel_dark)
304 create_bevel_colors(l);
305
306 switch (sp->bevel) {
307 case RR_BEVEL_1:
308 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
309 left, bottom, right, bottom);
310 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
311 right, bottom, right, top);
312
313 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
314 left, top, right, top);
315 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
316 left, bottom, left, top);
317 break;
318 case RR_BEVEL_2:
319 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
320 left + 2, bottom - 1, right - 2, bottom - 1);
321 XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
322 right - 1, bottom - 1, right - 1, top + 1);
323
324 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
325 left + 2, top + 1, right - 2, top + 1);
326 XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
327 left + 1, bottom - 1, left + 1, top + 1);
328 break;
329 default:
330 g_assert_not_reached(); /* unhandled BevelType */
331 }
332 break;
333 case RR_RELIEF_FLAT:
334 if (sp->border) {
335 XDrawRectangle(RrDisplay(l->inst), l->pixmap,
336 RrColorGC(sp->border_color),
337 left, top, right, bottom);
338 }
339 break;
340 default:
341 g_assert_not_reached(); /* unhandled ReliefType */
342 }
343 }
344
345 /* * * * * * * * * * * * * * GRADIENT MAGIC WOOT * * * * * * * * * * * * * * */
346
347 #define VARS(x) \
348 guint color##x[3]; \
349 gint len##x, cdelta##x[3], error##x[3] = { 0, 0, 0 }, inc##x[3]; \
350 gboolean bigslope##x[3] /* color slope > 1 */
351
352 #define SETUP(x, from, to, w) \
353 len##x = w; \
354 \
355 color##x[0] = from->r; \
356 color##x[1] = from->g; \
357 color##x[2] = from->b; \
358 \
359 cdelta##x[0] = to->r - from->r; \
360 cdelta##x[1] = to->g - from->g; \
361 cdelta##x[2] = to->b - from->b; \
362 \
363 if (cdelta##x[0] < 0) { \
364 cdelta##x[0] = -cdelta##x[0]; \
365 inc##x[0] = -1; \
366 } else \
367 inc##x[0] = 1; \
368 if (cdelta##x[1] < 0) { \
369 cdelta##x[1] = -cdelta##x[1]; \
370 inc##x[1] = -1; \
371 } else \
372 inc##x[1] = 1; \
373 if (cdelta##x[2] < 0) { \
374 cdelta##x[2] = -cdelta##x[2]; \
375 inc##x[2] = -1; \
376 } else \
377 inc##x[2] = 1; \
378 bigslope##x[0] = cdelta##x[0] > w;\
379 bigslope##x[1] = cdelta##x[1] > w;\
380 bigslope##x[2] = cdelta##x[2] > w
381
382 #define COLOR_RR(x, c) \
383 c->r = color##x[0]; \
384 c->g = color##x[1]; \
385 c->b = color##x[2]
386
387 #define COLOR(x) \
388 ((color##x[0] << RrDefaultRedOffset) + \
389 (color##x[1] << RrDefaultGreenOffset) + \
390 (color##x[2] << RrDefaultBlueOffset))
391
392 #define INCREMENT(x, i) \
393 (inc##x[i])
394
395 #define NEXT(x) \
396 { \
397 gint i; \
398 for (i = 2; i >= 0; --i) { \
399 if (!cdelta##x[i]) continue; \
400 \
401 if (!bigslope##x[i]) { \
402 /* Y (color) is dependant on X */ \
403 error##x[i] += cdelta##x[i]; \
404 if ((error##x[i] << 1) >= len##x) { \
405 color##x[i] += INCREMENT(x, i); \
406 error##x[i] -= len##x; \
407 } \
408 } else { \
409 /* X is dependant on Y (color) */ \
410 while (1) { \
411 color##x[i] += INCREMENT(x, i); \
412 error##x[i] += len##x; \
413 if ((error##x[i] << 1) >= cdelta##x[i]) { \
414 error##x[i] -= cdelta##x[i]; \
415 break; \
416 } \
417 } \
418 } \
419 } \
420 }
421
422 static void gradient_splitvertical(RrAppearance *a, gint w, gint h)
423 {
424 gint x, y1, y2, y3;
425 RrSurface *sf = &a->surface;
426 RrPixel32 *data = sf->pixel_data;
427 RrPixel32 current;
428 gint y1sz, y2sz, y3sz;
429
430 VARS(y1);
431 VARS(y2);
432 VARS(y3);
433
434
435 y1sz = MAX(h/2 - 1, 1);
436 /* setup to get the colors _in between_ these other 2 */
437 y2sz = (h < 3 ? 0 : (h % 2 ? 3 : 2));
438 y3sz = MAX(h/2 - 1, 0);
439
440 SETUP(y1, sf->split_primary, sf->primary, y1sz);
441 if (y2sz) {
442 SETUP(y2, sf->primary, sf->secondary, y2sz);
443 NEXT(y2); /* skip the first one, its the same as the last of y1 */
444 }
445 SETUP(y3, sf->secondary, sf->split_secondary, y3sz);
446
447 for (y1 = y1sz; y1 > 0; --y1) {
448 current = COLOR(y1);
449 for (x = w - 1; x >= 0; --x)
450 *(data++) = current;
451
452 NEXT(y1);
453 }
454
455 for (y2 = y2sz; y2 > 0; --y2) {
456 current = COLOR(y2);
457 for (x = w - 1; x >= 0; --x)
458 *(data++) = current;
459
460 NEXT(y2);
461 }
462
463 for (y3 = y3sz; y3 > 0; --y3) {
464 current = COLOR(y3);
465 for (x = w - 1; x >= 0; --x)
466 *(data++) = current;
467
468 NEXT(y3);
469 }
470 }
471
472 static void gradient_horizontal(RrSurface *sf, gint w, gint h)
473 {
474 gint x, y;
475 RrPixel32 *data = sf->pixel_data, *datav;
476 RrPixel32 current;
477
478 VARS(x);
479 SETUP(x, sf->primary, sf->secondary, w);
480
481 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
482 current = COLOR(x);
483 datav = data;
484 for (y = h - 1; y >= 0; --y) { /* 0 -> h */
485 *datav = current;
486 datav += w;
487 }
488 ++data;
489
490 NEXT(x);
491 }
492 current = COLOR(x);
493 for (y = h - 1; y >= 0; --y) /* 0 -> h */
494 *(data + y * w) = current;
495 }
496
497 static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h)
498 {
499 gint x, y;
500 RrPixel32 *data = sf->pixel_data, *datav;
501 RrPixel32 current;
502
503 VARS(x);
504 SETUP(x, sf->primary, sf->secondary, w/2);
505
506 if (w > 1) {
507 for (x = w - 1; x > w/2-1; --x) { /* 0 -> w-1 */
508 current = COLOR(x);
509 datav = data;
510 for (y = h - 1; y >= 0; --y) { /* 0 -> h */
511 *datav = current;
512 datav += w;
513 }
514 ++data;
515
516 NEXT(x);
517 }
518 SETUP(x, sf->secondary, sf->primary, w/2);
519 for (x = w/2 - 1; x > 0; --x) { /* 0 -> w-1 */
520 current = COLOR(x);
521 datav = data;
522 for (y = h - 1; y >= 0; --y) { /* 0 -> h */
523 *datav = current;
524 datav += w;
525 }
526 ++data;
527
528 NEXT(x);
529 }
530 }
531 current = COLOR(x);
532 for (y = h - 1; y >= 0; --y) /* 0 -> h */
533 *(data + y * w) = current;
534 }
535
536 static void gradient_vertical(RrSurface *sf, gint w, gint h)
537 {
538 gint x, y;
539 RrPixel32 *data = sf->pixel_data;
540 RrPixel32 current;
541
542 VARS(y);
543 SETUP(y, sf->primary, sf->secondary, h);
544
545 for (y = h - 1; y > 0; --y) { /* 0 -> h-1 */
546 current = COLOR(y);
547 for (x = w - 1; x >= 0; --x) /* 0 -> w */
548 *(data++) = current;
549
550 NEXT(y);
551 }
552 current = COLOR(y);
553 for (x = w - 1; x >= 0; --x) /* 0 -> w */
554 *(data++) = current;
555 }
556
557
558 static void gradient_diagonal(RrSurface *sf, gint w, gint h)
559 {
560 gint x, y;
561 RrPixel32 *data = sf->pixel_data;
562 RrColor left, right;
563 RrColor extracorner;
564
565 VARS(lefty);
566 VARS(righty);
567 VARS(x);
568
569 extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
570 extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
571 extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
572
573 SETUP(lefty, sf->primary, (&extracorner), h);
574 SETUP(righty, (&extracorner), sf->secondary, h);
575
576 for (y = h - 1; y > 0; --y) { /* 0 -> h-1 */
577 COLOR_RR(lefty, (&left));
578 COLOR_RR(righty, (&right));
579
580 SETUP(x, (&left), (&right), w);
581
582 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
583 *(data++) = COLOR(x);
584
585 NEXT(x);
586 }
587 *(data++) = COLOR(x);
588
589 NEXT(lefty);
590 NEXT(righty);
591 }
592 COLOR_RR(lefty, (&left));
593 COLOR_RR(righty, (&right));
594
595 SETUP(x, (&left), (&right), w);
596
597 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
598 *(data++) = COLOR(x);
599
600 NEXT(x);
601 }
602 *data = COLOR(x);
603 }
604
605 static void gradient_crossdiagonal(RrSurface *sf, gint w, gint h)
606 {
607 gint x, y;
608 RrPixel32 *data = sf->pixel_data;
609 RrColor left, right;
610 RrColor extracorner;
611
612 VARS(lefty);
613 VARS(righty);
614 VARS(x);
615
616 extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
617 extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
618 extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
619
620 SETUP(lefty, (&extracorner), sf->secondary, h);
621 SETUP(righty, sf->primary, (&extracorner), h);
622
623 for (y = h - 1; y > 0; --y) { /* 0 -> h-1 */
624 COLOR_RR(lefty, (&left));
625 COLOR_RR(righty, (&right));
626
627 SETUP(x, (&left), (&right), w);
628
629 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
630 *(data++) = COLOR(x);
631
632 NEXT(x);
633 }
634 *(data++) = COLOR(x);
635
636 NEXT(lefty);
637 NEXT(righty);
638 }
639 COLOR_RR(lefty, (&left));
640 COLOR_RR(righty, (&right));
641
642 SETUP(x, (&left), (&right), w);
643
644 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
645 *(data++) = COLOR(x);
646
647 NEXT(x);
648 }
649 *data = COLOR(x);
650 }
651
652 static void gradient_pyramid(RrSurface *sf, gint inw, gint inh)
653 {
654 gint x, y, w = (inw >> 1) + 1, h = (inh >> 1) + 1;
655 RrPixel32 *data = sf->pixel_data;
656 RrPixel32 *end = data + inw*inh - 1;
657 RrPixel32 current;
658 RrColor left, right;
659 RrColor extracorner;
660
661 VARS(lefty);
662 VARS(righty);
663 VARS(x);
664
665 extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
666 extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
667 extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
668
669 SETUP(lefty, (&extracorner), sf->secondary, h);
670 SETUP(righty, sf->primary, (&extracorner), h);
671
672 for (y = h - 1; y > 0; --y) { /* 0 -> h-1 */
673 COLOR_RR(lefty, (&left));
674 COLOR_RR(righty, (&right));
675
676 SETUP(x, (&left), (&right), w);
677
678 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
679 current = COLOR(x);
680 *(data+x) = current;
681 *(data+inw-x) = current;
682 *(end-x) = current;
683 *(end-(inw-x)) = current;
684
685 NEXT(x);
686 }
687 current = COLOR(x);
688 *(data+x) = current;
689 *(data+inw-x) = current;
690 *(end-x) = current;
691 *(end-(inw-x)) = current;
692
693 data+=inw;
694 end-=inw;
695
696 NEXT(lefty);
697 NEXT(righty);
698 }
699 COLOR_RR(lefty, (&left));
700 COLOR_RR(righty, (&right));
701
702 SETUP(x, (&left), (&right), w);
703
704 for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */
705 current = COLOR(x);
706 *(data+x) = current;
707 *(data+inw-x) = current;
708 *(end-x) = current;
709 *(end-(inw-x)) = current;
710
711 NEXT(x);
712 }
713 current = COLOR(x);
714 *(data+x) = current;
715 *(data+inw-x) = current;
716 *(end-x) = current;
717 *(end-(inw-x)) = current;
718 }
719
This page took 0.068517 seconds and 5 git commands to generate.