]> icculus.org git repositories - mikachu/openbox.git/blob - render/gradient.c
better.
[mikachu/openbox.git] / 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(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(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(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(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(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(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     r = (*up >> RrDefaultRedOffset) & 0xFF;
148     r += r >> 1;
149     g = (*up >> RrDefaultGreenOffset) & 0xFF;
150     g += g >> 1;
151     b = (*up >> RrDefaultBlueOffset) & 0xFF;
152     b += b >> 1;
153     if (r > 0xFF) r = 0xFF;
154     if (g > 0xFF) g = 0xFF;
155     if (b > 0xFF) b = 0xFF;
156     *up = (r << RrDefaultRedOffset) + (g << RrDefaultGreenOffset)
157         + (b << RrDefaultBlueOffset);
158   
159     r = (*down >> RrDefaultRedOffset) & 0xFF;
160     r = (r >> 1) + (r >> 2);
161     g = (*down >> RrDefaultGreenOffset) & 0xFF;
162     g = (g >> 1) + (g >> 2);
163     b = (*down >> RrDefaultBlueOffset) & 0xFF;
164     b = (b >> 1) + (b >> 2);
165     *down = (r << RrDefaultRedOffset) + (g << RrDefaultGreenOffset)
166         + (b << RrDefaultBlueOffset);
167 }
168
169 static void create_bevel_colors(RrAppearance *l)
170 {
171     gint r, g, b;
172
173     /* light color */
174     r = l->surface.primary->r;
175     r += r >> 1;
176     g = l->surface.primary->g;
177     g += g >> 1;
178     b = l->surface.primary->b;
179     b += b >> 1;
180     if (r > 0xFF) r = 0xFF;
181     if (g > 0xFF) g = 0xFF;
182     if (b > 0xFF) b = 0xFF;
183     g_assert(!l->surface.bevel_light);
184     l->surface.bevel_light = RrColorNew(l->inst, r, g, b);
185
186     /* dark color */
187     r = l->surface.primary->r;
188     r = (r >> 1) + (r >> 2);
189     g = l->surface.primary->g;
190     g = (g >> 1) + (g >> 2);
191     b = l->surface.primary->b;
192     b = (b >> 1) + (b >> 2);
193     g_assert(!l->surface.bevel_dark);
194     l->surface.bevel_dark = RrColorNew(l->inst, r, g, b);
195 }
196
197 static void gradient_parentrelative(RrAppearance *a, gint w, gint h)
198 {
199     RrPixel32 *source, *dest;
200     gint sw, sh, partial_w, partial_h, i;
201
202     g_assert (a->surface.parent);
203     g_assert (a->surface.parent->w);
204
205     sw = a->surface.parent->w;
206     sh = a->surface.parent->h;
207
208     /* This is a little hack. When a texture is parentrelative, and the same
209        area as the parent, and has a bevel, it will draw its bevel on top
210        of the parent's, amplifying it. So instead, rerender the child with
211        the parent's settings, but the child's bevel and interlace */
212     if (a->surface.relief != RR_RELIEF_FLAT &&
213         (a->surface.parent->surface.relief != RR_RELIEF_FLAT ||
214          a->surface.parent->surface.border) &&
215         !a->surface.parentx && !a->surface.parenty &&
216         sw == w && sh == h)
217     {
218         RrSurface old = a->surface;
219         a->surface = a->surface.parent->surface;
220
221         /* turn these off for the parent */
222         a->surface.relief = RR_RELIEF_FLAT;
223         a->surface.border = FALSE;
224
225         a->surface.pixel_data = old.pixel_data;
226
227         RrRender(a, w, h);
228         a->surface = old;
229     } else {
230         source = (a->surface.parent->surface.pixel_data +
231                   a->surface.parentx + sw * a->surface.parenty);
232         dest = a->surface.pixel_data;
233
234         if (a->surface.parentx + w > sw) {
235             partial_w = sw - a->surface.parentx;
236         } else partial_w = w;
237
238         if (a->surface.parenty + h > sh) {
239             partial_h = sh - a->surface.parenty;
240         } else partial_h = h;
241
242         for (i = 0; i < partial_h; i++, source += sw, dest += w) {
243             memcpy(dest, source, partial_w * sizeof(RrPixel32));
244         }
245     }
246 }
247
248 static void gradient_solid(RrAppearance *l, gint w, gint h) 
249 {
250     gint i;
251     RrPixel32 pix;
252     RrPixel32 *data = l->surface.pixel_data;
253     RrSurface *sp = &l->surface;
254     gint left = 0, top = 0, right = w - 1, bottom = h - 1;
255
256     pix = (sp->primary->r << RrDefaultRedOffset)
257         + (sp->primary->g << RrDefaultGreenOffset)
258         + (sp->primary->b << RrDefaultBlueOffset);
259
260     for (i = 0; i < w * h; i++)
261         *data++ = pix;
262
263     if (sp->interlaced)
264         return;
265
266     XFillRectangle(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->primary),
267                    0, 0, w, h);
268
269     switch (sp->relief) {
270     case RR_RELIEF_RAISED:
271         if (!sp->bevel_dark)
272             create_bevel_colors(l);
273
274         switch (sp->bevel) {
275         case RR_BEVEL_1:
276             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
277                       left, bottom, right, bottom);
278             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
279                       right, bottom, right, top);
280                 
281             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
282                       left, top, right, top);
283             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
284                       left, bottom, left, top);
285             break;
286         case RR_BEVEL_2:
287             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
288                       left + 2, bottom - 1, right - 2, bottom - 1);
289             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
290                       right - 1, bottom - 1, right - 1, top + 1);
291
292             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
293                       left + 2, top + 1, right - 2, top + 1);
294             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
295                       left + 1, bottom - 1, left + 1, top + 1);
296             break;
297         default:
298             g_assert_not_reached(); /* unhandled BevelType */
299         }
300         break;
301     case RR_RELIEF_SUNKEN:
302         if (!sp->bevel_dark)
303             create_bevel_colors(l);
304
305         switch (sp->bevel) {
306         case RR_BEVEL_1:
307             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
308                       left, bottom, right, bottom);
309             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
310                       right, bottom, right, top);
311       
312             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
313                       left, top, right, top);
314             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
315                       left, bottom, left, top);
316             break;
317         case RR_BEVEL_2:
318             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
319                       left + 2, bottom - 1, right - 2, bottom - 1);
320             XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light),
321                       right - 1, bottom - 1, right - 1, top + 1);
322
323             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
324                       left + 2, top + 1, right - 2, top + 1);
325             XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark),
326                       left + 1, bottom - 1, left + 1, top + 1);
327             break;
328         default:
329             g_assert_not_reached(); /* unhandled BevelType */
330         }
331         break;
332     case RR_RELIEF_FLAT:
333         if (sp->border) {
334             XDrawRectangle(RrDisplay(l->inst), l->pixmap,
335                            RrColorGC(sp->border_color),
336                            left, top, right, bottom);
337         }
338         break;
339     default:  
340         g_assert_not_reached(); /* unhandled ReliefType */
341     }
342 }
343
344 /* * * * * * * * * * * * * * GRADIENT MAGIC WOOT * * * * * * * * * * * * * * */
345
346 #define VARS(x)                                                     \
347     guint color##x[3];                                       \
348     gint len##x, cdelta##x[3], error##x[3] = { 0, 0, 0 }, inc##x[3]; \
349     gboolean bigslope##x[3] /* color slope > 1 */
350
351 #define SETUP(x, from, to, w)         \
352     len##x = w;                       \
353                                       \
354     color##x[0] = from->r;            \
355     color##x[1] = from->g;            \
356     color##x[2] = from->b;            \
357                                       \
358     cdelta##x[0] = to->r - from->r;   \
359     cdelta##x[1] = to->g - from->g;   \
360     cdelta##x[2] = to->b - from->b;   \
361                                       \
362     if (cdelta##x[0] < 0) {           \
363         cdelta##x[0] = -cdelta##x[0]; \
364         inc##x[0] = -1;               \
365     } else                            \
366         inc##x[0] = 1;                \
367     if (cdelta##x[1] < 0) {           \
368         cdelta##x[1] = -cdelta##x[1]; \
369         inc##x[1] = -1;               \
370     } else                            \
371         inc##x[1] = 1;                \
372     if (cdelta##x[2] < 0) {           \
373         cdelta##x[2] = -cdelta##x[2]; \
374         inc##x[2] = -1;               \
375     } else                            \
376         inc##x[2] = 1;                \
377     bigslope##x[0] = cdelta##x[0] > w;\
378     bigslope##x[1] = cdelta##x[1] > w;\
379     bigslope##x[2] = cdelta##x[2] > w
380
381 #define COLOR_RR(x, c)                       \
382     c->r = color##x[0];                      \
383     c->g = color##x[1];                      \
384     c->b = color##x[2]
385
386 #define COLOR(x)                             \
387     ((color##x[0] << RrDefaultRedOffset) +   \
388      (color##x[1] << RrDefaultGreenOffset) + \
389      (color##x[2] << RrDefaultBlueOffset))
390
391 #define INCREMENT(x, i) \
392     (inc##x[i])
393
394 #define NEXT(x)                                           \
395 {                                                         \
396     gint i;                                                \
397     for (i = 2; i >= 0; --i) {                            \
398         if (!cdelta##x[i]) continue;                      \
399                                                           \
400         if (!bigslope##x[i]) {                            \
401             /* Y (color) is dependant on X */             \
402             error##x[i] += cdelta##x[i];                  \
403             if ((error##x[i] << 1) >= len##x) {           \
404                 color##x[i] += INCREMENT(x, i);           \
405                 error##x[i] -= len##x;                    \
406             }                                             \
407         } else {                                          \
408             /* X is dependant on Y (color) */             \
409             while (1) {                                   \
410                 color##x[i] += INCREMENT(x, i);           \
411                 error##x[i] += len##x;                    \
412                 if ((error##x[i] << 1) >= cdelta##x[i]) { \
413                     error##x[i] -= cdelta##x[i];          \
414                     break;                                \
415                 }                                         \
416             }                                             \
417         }                                                 \
418     }                                                     \
419 }
420
421 static void gradient_splitvertical(RrAppearance *a, gint w, gint h)
422 {
423     gint x, y1, y3, r, g, b;
424     RrSurface *sf = &a->surface;
425     RrPixel32 *data = sf->pixel_data;
426     RrPixel32 current;
427     RrColor *primary_light, *secondary_light;
428
429     VARS(y1);
430     VARS(y3);
431
432     r = sf->primary->r;
433     r += r >> 2;
434     g = sf->primary->g;
435     g += g >> 2;
436     b = sf->primary->b;
437     b += b >> 2;
438     if (r > 0xFF) r = 0xFF;
439     if (g > 0xFF) g = 0xFF;
440     if (b > 0xFF) b = 0xFF;
441       primary_light = RrColorNew(a->inst, r, g, b);
442
443     r = sf->secondary->r;
444     r += r >> 4;
445     g = sf->secondary->g;
446     g += g >> 4;
447     b = sf->secondary->b;
448     b += b >> 4;
449     if (r > 0xFF) r = 0xFF;
450     if (g > 0xFF) g = 0xFF;
451     if (b > 0xFF) b = 0xFF;
452     secondary_light = RrColorNew(a->inst, r, g, b);
453
454     SETUP(y1, primary_light, sf->primary, (h / 2) -1);
455     SETUP(y3, sf->secondary, secondary_light,  (h / 2) -1);
456
457     for (y1 = h - 1; y1 > (h / 2) -1; --y1) {  /* 0 -> h-1 */
458         current = COLOR(y1);
459         for (x = w - 1; x >= 0; --x)  /* 0 -> w */
460             *(data++) = current;
461
462         NEXT(y1);
463     }
464
465     
466     for (y3 = (h / 2) - 1; y3 > 0; --y3) {
467         current = COLOR(y3);
468         for (x = w - 1; x >= 0; --x)
469             *(data++) = current;
470
471         NEXT(y3);
472     }
473
474     current = COLOR(y3);
475     for (x = w - 1; x >= 0; --x)  /* 0 -> w */
476         *(data++) = current;
477
478     RrColorFree(primary_light);
479     RrColorFree(secondary_light);
480 }
481
482 static void gradient_horizontal(RrSurface *sf, gint w, gint h)
483 {
484     gint x, y;
485     RrPixel32 *data = sf->pixel_data, *datav;
486     RrPixel32 current;
487
488     VARS(x);
489     SETUP(x, sf->primary, sf->secondary, w);
490
491     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
492         current = COLOR(x);
493         datav = data;
494         for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
495             *datav = current;
496             datav += w;
497         }
498         ++data;
499
500         NEXT(x);
501     }
502     current = COLOR(x);
503     for (y = h - 1; y >= 0; --y)  /* 0 -> h */
504         *(data + y * w) = current;
505 }
506
507 static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h)
508 {
509     gint x, y;
510     RrPixel32 *data = sf->pixel_data, *datav;
511     RrPixel32 current;
512
513     VARS(x);
514     SETUP(x, sf->primary, sf->secondary, w/2);
515
516     if (w > 1) {
517         for (x = w - 1; x > w/2-1; --x) {  /* 0 -> w-1 */
518             current = COLOR(x);
519             datav = data;
520             for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
521                 *datav = current;
522                 datav += w;
523             }
524             ++data;
525
526             NEXT(x);
527         }
528         SETUP(x, sf->secondary, sf->primary, w/2);
529         for (x = w/2 - 1; x > 0; --x) {  /* 0 -> w-1 */
530             current = COLOR(x);
531             datav = data;
532             for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
533                 *datav = current;
534                 datav += w;
535             }
536             ++data;
537
538             NEXT(x);
539         }
540     }
541     current = COLOR(x);
542     for (y = h - 1; y >= 0; --y)  /* 0 -> h */
543         *(data + y * w) = current;
544 }
545
546 static void gradient_vertical(RrSurface *sf, gint w, gint h)
547 {
548     gint x, y;
549     RrPixel32 *data = sf->pixel_data;
550     RrPixel32 current;
551
552     VARS(y);
553     SETUP(y, sf->primary, sf->secondary, h);
554
555     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
556         current = COLOR(y);
557         for (x = w - 1; x >= 0; --x)  /* 0 -> w */
558             *(data++) = current;
559
560         NEXT(y);
561     }
562     current = COLOR(y);
563     for (x = w - 1; x >= 0; --x)  /* 0 -> w */
564         *(data++) = current;
565 }
566
567
568 static void gradient_diagonal(RrSurface *sf, gint w, gint h)
569 {
570     gint x, y;
571     RrPixel32 *data = sf->pixel_data;
572     RrColor left, right;
573     RrColor extracorner;
574
575     VARS(lefty);
576     VARS(righty);
577     VARS(x);
578
579     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
580     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
581     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
582
583     SETUP(lefty, sf->primary, (&extracorner), h);
584     SETUP(righty, (&extracorner), sf->secondary, h);
585
586     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
587         COLOR_RR(lefty, (&left));
588         COLOR_RR(righty, (&right));
589
590         SETUP(x, (&left), (&right), w);
591
592         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
593             *(data++) = COLOR(x);
594
595             NEXT(x);
596         }
597         *(data++) = COLOR(x);
598
599         NEXT(lefty);
600         NEXT(righty);
601     }
602     COLOR_RR(lefty, (&left));
603     COLOR_RR(righty, (&right));
604
605     SETUP(x, (&left), (&right), w);
606
607     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
608         *(data++) = COLOR(x);
609         
610         NEXT(x);
611     }
612     *data = COLOR(x);
613 }
614
615 static void gradient_crossdiagonal(RrSurface *sf, gint w, gint h)
616 {
617     gint x, y;
618     RrPixel32 *data = sf->pixel_data;
619     RrColor left, right;
620     RrColor extracorner;
621
622     VARS(lefty);
623     VARS(righty);
624     VARS(x);
625
626     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
627     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
628     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
629
630     SETUP(lefty, (&extracorner), sf->secondary, h);
631     SETUP(righty, sf->primary, (&extracorner), h);
632
633     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
634         COLOR_RR(lefty, (&left));
635         COLOR_RR(righty, (&right));
636
637         SETUP(x, (&left), (&right), w);
638
639         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
640             *(data++) = COLOR(x);
641
642             NEXT(x);
643         }
644         *(data++) = COLOR(x);
645
646         NEXT(lefty);
647         NEXT(righty);
648     }
649     COLOR_RR(lefty, (&left));
650     COLOR_RR(righty, (&right));
651
652     SETUP(x, (&left), (&right), w);
653
654     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
655         *(data++) = COLOR(x);
656         
657         NEXT(x);
658     }
659     *data = COLOR(x);
660 }
661
662 static void gradient_pyramid(RrSurface *sf, gint inw, gint inh)
663 {
664     gint x, y, w = (inw >> 1) + 1, h = (inh >> 1) + 1;
665     RrPixel32 *data = sf->pixel_data;
666     RrPixel32 *end = data + inw*inh - 1;
667     RrPixel32 current;
668     RrColor left, right;
669     RrColor extracorner;
670
671     VARS(lefty);
672     VARS(righty);
673     VARS(x);
674
675     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
676     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
677     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
678
679     SETUP(lefty, (&extracorner), sf->secondary, h);
680     SETUP(righty, sf->primary, (&extracorner), h);
681
682     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
683         COLOR_RR(lefty, (&left));
684         COLOR_RR(righty, (&right));
685
686         SETUP(x, (&left), (&right), w);
687
688         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
689             current = COLOR(x);
690             *(data+x) = current;
691             *(data+inw-x) = current;
692             *(end-x) = current;
693             *(end-(inw-x)) = current;
694
695             NEXT(x);
696         }
697         current = COLOR(x);
698         *(data+x) = current;
699         *(data+inw-x) = current;
700         *(end-x) = current;
701         *(end-(inw-x)) = current;
702
703         data+=inw;
704         end-=inw;
705
706         NEXT(lefty);
707         NEXT(righty);
708     }
709     COLOR_RR(lefty, (&left));
710     COLOR_RR(righty, (&right));
711
712     SETUP(x, (&left), (&right), w);
713
714     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
715         current = COLOR(x);
716         *(data+x) = current;
717         *(data+inw-x) = current;
718         *(end-x) = current;
719         *(end-(inw-x)) = current;
720         
721         NEXT(x);
722     }
723     current = COLOR(x);
724     *(data+x) = current;
725     *(data+inw-x) = current;
726     *(end-x) = current;
727     *(end-(inw-x)) = current;
728 }
729