X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=render%2Fgradient.c;h=a08c258b2b03ccc6f6de99ae1a6f0eb1843136aa;hb=b543af60b3b625f978bec0eacc7da31cd9d347f6;hp=6f976e0b0e6843fc3b7c9b3034e377d32ee620b5;hpb=1e882b62718e4d6a4a149b415964646ad424fbfd;p=chaz%2Fopenbox diff --git a/render/gradient.c b/render/gradient.c index 6f976e0b..a08c258b 100644 --- a/render/gradient.c +++ b/render/gradient.c @@ -13,7 +13,7 @@ static void gradient_pyramid(RrSurface *sf, int inw, int inh); void RrRender(RrAppearance *a, int w, int h) { - RrPixel32 *data = a->surface.RrPixel_data; + RrPixel32 *data = a->surface.pixel_data; RrPixel32 current; unsigned int r,g,b; int off, x; @@ -21,7 +21,7 @@ void RrRender(RrAppearance *a, int w, int h) switch (a->surface.grad) { case RR_SURFACE_SOLID: gradient_solid(a, w, h); - return; + break; case RR_SURFACE_VERTICAL: gradient_vertical(&a->surface, w, h); break; @@ -38,7 +38,7 @@ void RrRender(RrAppearance *a, int w, int h) gradient_pyramid(&a->surface, w, h); break; default: - g_message("unhandled gradient"); + g_assert_not_reached(); /* unhandled gradient */ return; } @@ -134,7 +134,6 @@ static void create_bevel_colors(RrAppearance *l) if (b > 0xFF) b = 0xFF; g_assert(!l->surface.bevel_light); l->surface.bevel_light = RrColorNew(l->inst, r, g, b); - RrColorAllocateGC(l->surface.bevel_light); /* dark color */ r = l->surface.primary->r; @@ -145,7 +144,6 @@ static void create_bevel_colors(RrAppearance *l) b = (b >> 1) + (b >> 2); g_assert(!l->surface.bevel_dark); l->surface.bevel_dark = RrColorNew(l->inst, r, g, b); - RrColorAllocateGC(l->surface.bevel_dark); } static void gradient_solid(RrAppearance *l, int w, int h) @@ -155,24 +153,20 @@ static void gradient_solid(RrAppearance *l, int w, int h) RrSurface *sp = &l->surface; int left = 0, top = 0, right = w - 1, bottom = h - 1; - if (sp->primary->gc == None) - RrColorAllocateGC(sp->primary); pix = (sp->primary->r << RrDefaultRedOffset) + (sp->primary->g << RrDefaultGreenOffset) + (sp->primary->b << RrDefaultBlueOffset); for (a = 0; a < w; a++) for (b = 0; b < h; b++) - sp->RrPixel_data[a + b * w] = pix; + sp->pixel_data[a + b * w] = pix; - XFillRectangle(RrDisplay(l->inst), l->pixmap, sp->primary->gc, + XFillRectangle(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->primary), 0, 0, w, h); if (sp->interlaced) { - if (sp->secondary->gc == None) - RrColorAllocateGC(sp->secondary); for (i = 0; i < h; i += 2) - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->secondary->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->secondary), 0, i, w, i); } @@ -183,29 +177,25 @@ static void gradient_solid(RrAppearance *l, int w, int h) switch (sp->bevel) { case RR_BEVEL_1: - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left, bottom, right, bottom); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), right, bottom, right, top); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left, top, right, top); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left, bottom, left, top); break; case RR_BEVEL_2: - XDrawLine(RrDisplay(l->inst), l->pixmap, - sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left + 1, bottom - 2, right - 2, bottom - 2); - XDrawLine(RrDisplay(l->inst), l->pixmap, - sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), right - 2, bottom - 2, right - 2, top + 1); - XDrawLine(RrDisplay(l->inst), l->pixmap, - sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left + 1, top + 1, right - 2, top + 1); - XDrawLine(RrDisplay(l->inst), l->pixmap, - sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left + 1, bottom - 2, left + 1, top + 1); break; default: @@ -218,25 +208,25 @@ static void gradient_solid(RrAppearance *l, int w, int h) switch (sp->bevel) { case RR_BEVEL_1: - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left, bottom, right, bottom); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), right, bottom, right, top); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left, top, right, top); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left, bottom, left, top); break; case RR_BEVEL_2: - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), left + 1, bottom - 2, right - 2, bottom - 2); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_light->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap,RrColorGC(sp->bevel_light), right - 2, bottom - 2, right - 2, top + 1); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left + 1, top + 1, right - 2, top + 1); - XDrawLine(RrDisplay(l->inst), l->pixmap, sp->bevel_dark->gc, + XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->bevel_dark), left + 1, bottom - 2, left + 1, top + 1); break; @@ -246,9 +236,8 @@ static void gradient_solid(RrAppearance *l, int w, int h) break; case RR_RELIEF_FLAT: if (sp->border) { - if (sp->border_color->gc == None) - RrColorAllocateGC(sp->border_color); - XDrawRectangle(RrDisplay(l->inst), l->pixmap, sp->border_color->gc, + XDrawRectangle(RrDisplay(l->inst), l->pixmap, + RrColorGC(sp->border_color), left, top, right, bottom); } break; @@ -304,6 +293,9 @@ static void gradient_solid(RrAppearance *l, int w, int h) (color##x[1] << RrDefaultGreenOffset) + \ (color##x[2] << RrDefaultBlueOffset)) +#define INCREMENT(x, i) \ + (inc##x[i]) + #define NEXT(x) \ { \ int i; \ @@ -314,13 +306,13 @@ static void gradient_solid(RrAppearance *l, int w, int h) /* Y (color) is dependant on X */ \ error##x[i] += cdelta##x[i]; \ if ((error##x[i] << 1) >= len##x) { \ - color##x[i] += inc##x[i]; \ + color##x[i] += INCREMENT(x, i); \ error##x[i] -= len##x; \ } \ } else { \ /* X is dependant on Y (color) */ \ while (1) { \ - color##x[i] += inc##x[i]; \ + color##x[i] += INCREMENT(x, i); \ error##x[i] += len##x; \ if ((error##x[i] << 1) >= cdelta##x[i]) { \ error##x[i] -= cdelta##x[i]; \ @@ -334,7 +326,7 @@ static void gradient_solid(RrAppearance *l, int w, int h) static void gradient_horizontal(RrSurface *sf, int w, int h) { int x, y; - RrPixel32 *data = sf->RrPixel_data; + RrPixel32 *data = sf->pixel_data, *datav; RrPixel32 current; VARS(x); @@ -342,8 +334,11 @@ static void gradient_horizontal(RrSurface *sf, int w, int h) for (x = w - 1; x > 0; --x) { /* 0 -> w-1 */ current = COLOR(x); - for (y = h - 1; y >= 0; --y) /* 0 -> h */ - *(data + y * w) = current; + datav = data; + for (y = h - 1; y >= 0; --y) { /* 0 -> h */ + *datav = current; + datav += w; + } ++data; NEXT(x); @@ -356,7 +351,7 @@ static void gradient_horizontal(RrSurface *sf, int w, int h) static void gradient_vertical(RrSurface *sf, int w, int h) { int x, y; - RrPixel32 *data = sf->RrPixel_data; + RrPixel32 *data = sf->pixel_data; RrPixel32 current; VARS(y); @@ -378,7 +373,7 @@ static void gradient_vertical(RrSurface *sf, int w, int h) static void gradient_diagonal(RrSurface *sf, int w, int h) { int x, y; - RrPixel32 *data = sf->RrPixel_data; + RrPixel32 *data = sf->pixel_data; RrColor left, right; RrColor extracorner; @@ -425,7 +420,7 @@ static void gradient_diagonal(RrSurface *sf, int w, int h) static void gradient_crossdiagonal(RrSurface *sf, int w, int h) { int x, y; - RrPixel32 *data = sf->RrPixel_data; + RrPixel32 *data = sf->pixel_data; RrColor left, right; RrColor extracorner; @@ -472,7 +467,7 @@ static void gradient_crossdiagonal(RrSurface *sf, int w, int h) static void gradient_pyramid(RrSurface *sf, int inw, int inh) { int x, y, w = (inw >> 1) + 1, h = (inh >> 1) + 1; - RrPixel32 *data = sf->RrPixel_data; + RrPixel32 *data = sf->pixel_data; RrPixel32 *end = data + inw*inh - 1; RrPixel32 current; RrColor left, right; @@ -530,6 +525,7 @@ static void gradient_pyramid(RrSurface *sf, int inw, int inh) NEXT(x); } + current = COLOR(x); *(data+x) = current; *(data+inw-x) = current; *(end-x) = current;