middle gradient in splitvertical
[dana/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, y2, 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(y2);
431     VARS(y3);
432
433     r = sf->primary->r;
434     r += r >> 2;
435     g = sf->primary->g;
436     g += g >> 2;
437     b = sf->primary->b;
438     b += b >> 2;
439     if (r > 0xFF) r = 0xFF;
440     if (g > 0xFF) g = 0xFF;
441     if (b > 0xFF) b = 0xFF;
442       primary_light = RrColorNew(a->inst, r, g, b);
443
444     r = sf->secondary->r;
445     r += r >> 4;
446     g = sf->secondary->g;
447     g += g >> 4;
448     b = sf->secondary->b;
449     b += b >> 4;
450     if (r > 0xFF) r = 0xFF;
451     if (g > 0xFF) g = 0xFF;
452     if (b > 0xFF) b = 0xFF;
453     secondary_light = RrColorNew(a->inst, r, g, b);
454
455     SETUP(y1, primary_light, sf->primary, (h / 2) - 1);
456     /* setup to get the colors in between these 2 */
457     SETUP(y2, sf->primary, sf->secondary, h % 2 ? 5 : 4);
458     SETUP(y3, sf->secondary, secondary_light,  (h / 2) - 1);
459
460     for (y1 = (h / 2) - 1; y1 > 0; --y1) {
461         current = COLOR(y1);
462         for (x = w - 1; x >= 0; --x)
463             *(data++) = current;
464
465         NEXT(y1);
466     }
467
468     NEXT(y2); /* skip the first one, its the same as the last of y1 */
469     for (y2 = (h % 2 ? 3 : 2); y2 > 0; --y2) {
470         current = COLOR(y2);
471         for (x = w - 1; x >= 0; --x)
472             *(data++) = current;
473         
474         NEXT(y2);
475     }
476     
477     for (y3 = (h / 2) - 1; y3 > 0; --y3) {
478         current = COLOR(y3);
479         for (x = w - 1; x >= 0; --x)
480             *(data++) = current;
481
482         NEXT(y3);
483     }
484
485     RrColorFree(primary_light);
486     RrColorFree(secondary_light);
487 }
488
489 static void gradient_horizontal(RrSurface *sf, gint w, gint h)
490 {
491     gint x, y;
492     RrPixel32 *data = sf->pixel_data, *datav;
493     RrPixel32 current;
494
495     VARS(x);
496     SETUP(x, sf->primary, sf->secondary, w);
497
498     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
499         current = COLOR(x);
500         datav = data;
501         for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
502             *datav = current;
503             datav += w;
504         }
505         ++data;
506
507         NEXT(x);
508     }
509     current = COLOR(x);
510     for (y = h - 1; y >= 0; --y)  /* 0 -> h */
511         *(data + y * w) = current;
512 }
513
514 static void gradient_mirrorhorizontal(RrSurface *sf, gint w, gint h)
515 {
516     gint x, y;
517     RrPixel32 *data = sf->pixel_data, *datav;
518     RrPixel32 current;
519
520     VARS(x);
521     SETUP(x, sf->primary, sf->secondary, w/2);
522
523     if (w > 1) {
524         for (x = w - 1; x > w/2-1; --x) {  /* 0 -> w-1 */
525             current = COLOR(x);
526             datav = data;
527             for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
528                 *datav = current;
529                 datav += w;
530             }
531             ++data;
532
533             NEXT(x);
534         }
535         SETUP(x, sf->secondary, sf->primary, w/2);
536         for (x = w/2 - 1; x > 0; --x) {  /* 0 -> w-1 */
537             current = COLOR(x);
538             datav = data;
539             for (y = h - 1; y >= 0; --y) {  /* 0 -> h */
540                 *datav = current;
541                 datav += w;
542             }
543             ++data;
544
545             NEXT(x);
546         }
547     }
548     current = COLOR(x);
549     for (y = h - 1; y >= 0; --y)  /* 0 -> h */
550         *(data + y * w) = current;
551 }
552
553 static void gradient_vertical(RrSurface *sf, gint w, gint h)
554 {
555     gint x, y;
556     RrPixel32 *data = sf->pixel_data;
557     RrPixel32 current;
558
559     VARS(y);
560     SETUP(y, sf->primary, sf->secondary, h);
561
562     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
563         current = COLOR(y);
564         for (x = w - 1; x >= 0; --x)  /* 0 -> w */
565             *(data++) = current;
566
567         NEXT(y);
568     }
569     current = COLOR(y);
570     for (x = w - 1; x >= 0; --x)  /* 0 -> w */
571         *(data++) = current;
572 }
573
574
575 static void gradient_diagonal(RrSurface *sf, gint w, gint h)
576 {
577     gint x, y;
578     RrPixel32 *data = sf->pixel_data;
579     RrColor left, right;
580     RrColor extracorner;
581
582     VARS(lefty);
583     VARS(righty);
584     VARS(x);
585
586     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
587     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
588     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
589
590     SETUP(lefty, sf->primary, (&extracorner), h);
591     SETUP(righty, (&extracorner), sf->secondary, h);
592
593     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
594         COLOR_RR(lefty, (&left));
595         COLOR_RR(righty, (&right));
596
597         SETUP(x, (&left), (&right), w);
598
599         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
600             *(data++) = COLOR(x);
601
602             NEXT(x);
603         }
604         *(data++) = COLOR(x);
605
606         NEXT(lefty);
607         NEXT(righty);
608     }
609     COLOR_RR(lefty, (&left));
610     COLOR_RR(righty, (&right));
611
612     SETUP(x, (&left), (&right), w);
613
614     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
615         *(data++) = COLOR(x);
616         
617         NEXT(x);
618     }
619     *data = COLOR(x);
620 }
621
622 static void gradient_crossdiagonal(RrSurface *sf, gint w, gint h)
623 {
624     gint x, y;
625     RrPixel32 *data = sf->pixel_data;
626     RrColor left, right;
627     RrColor extracorner;
628
629     VARS(lefty);
630     VARS(righty);
631     VARS(x);
632
633     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
634     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
635     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
636
637     SETUP(lefty, (&extracorner), sf->secondary, h);
638     SETUP(righty, sf->primary, (&extracorner), h);
639
640     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
641         COLOR_RR(lefty, (&left));
642         COLOR_RR(righty, (&right));
643
644         SETUP(x, (&left), (&right), w);
645
646         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
647             *(data++) = COLOR(x);
648
649             NEXT(x);
650         }
651         *(data++) = COLOR(x);
652
653         NEXT(lefty);
654         NEXT(righty);
655     }
656     COLOR_RR(lefty, (&left));
657     COLOR_RR(righty, (&right));
658
659     SETUP(x, (&left), (&right), w);
660
661     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
662         *(data++) = COLOR(x);
663         
664         NEXT(x);
665     }
666     *data = COLOR(x);
667 }
668
669 static void gradient_pyramid(RrSurface *sf, gint inw, gint inh)
670 {
671     gint x, y, w = (inw >> 1) + 1, h = (inh >> 1) + 1;
672     RrPixel32 *data = sf->pixel_data;
673     RrPixel32 *end = data + inw*inh - 1;
674     RrPixel32 current;
675     RrColor left, right;
676     RrColor extracorner;
677
678     VARS(lefty);
679     VARS(righty);
680     VARS(x);
681
682     extracorner.r = (sf->primary->r + sf->secondary->r) / 2;
683     extracorner.g = (sf->primary->g + sf->secondary->g) / 2;
684     extracorner.b = (sf->primary->b + sf->secondary->b) / 2;
685
686     SETUP(lefty, (&extracorner), sf->secondary, h);
687     SETUP(righty, sf->primary, (&extracorner), h);
688
689     for (y = h - 1; y > 0; --y) {  /* 0 -> h-1 */
690         COLOR_RR(lefty, (&left));
691         COLOR_RR(righty, (&right));
692
693         SETUP(x, (&left), (&right), w);
694
695         for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
696             current = COLOR(x);
697             *(data+x) = current;
698             *(data+inw-x) = current;
699             *(end-x) = current;
700             *(end-(inw-x)) = current;
701
702             NEXT(x);
703         }
704         current = COLOR(x);
705         *(data+x) = current;
706         *(data+inw-x) = current;
707         *(end-x) = current;
708         *(end-(inw-x)) = current;
709
710         data+=inw;
711         end-=inw;
712
713         NEXT(lefty);
714         NEXT(righty);
715     }
716     COLOR_RR(lefty, (&left));
717     COLOR_RR(righty, (&right));
718
719     SETUP(x, (&left), (&right), w);
720
721     for (x = w - 1; x > 0; --x) {  /* 0 -> w-1 */
722         current = COLOR(x);
723         *(data+x) = current;
724         *(data+inw-x) = current;
725         *(end-x) = current;
726         *(end-(inw-x)) = current;
727         
728         NEXT(x);
729     }
730     current = COLOR(x);
731     *(data+x) = current;
732     *(data+inw-x) = current;
733     *(end-x) = current;
734     *(end-(inw-x)) = current;
735 }
736