X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=render%2Fgradient.c;h=fa54fbb25b657929047d76ff70be57ccdfe88a6f;hb=9bd60fd92b8ff09630b35973947493a23015c621;hp=a08c258b2b03ccc6f6de99ae1a6f0eb1843136aa;hpb=6e86a42c4b468c6c58cf1acf6b288a250543db98;p=chaz%2Fopenbox diff --git a/render/gradient.c b/render/gradient.c index a08c258b..fa54fbb2 100644 --- a/render/gradient.c +++ b/render/gradient.c @@ -1,3 +1,22 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + gradient.c for the Openbox window manager + Copyright (c) 2003 Ben Jansens + Copyright (c) 2003 Derek Foreman + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include "render.h" #include "gradient.h" #include "color.h" @@ -42,6 +61,22 @@ void RrRender(RrAppearance *a, int w, int h) return; } + if (a->surface.interlaced) { + int i; + RrPixel32 *p; + + r = a->surface.interlace_color->r; + g = a->surface.interlace_color->g; + b = a->surface.interlace_color->b; + current = (r << RrDefaultRedOffset) + + (g << RrDefaultGreenOffset) + + (b << RrDefaultBlueOffset); + p = data; + for (i = 0; i < h; i += 2, p += w) + for (x = 0; x < w; ++x, ++p) + *p = current; + } + if (a->surface.relief == RR_RELIEF_FLAT && a->surface.border) { r = a->surface.border_color->r; g = a->surface.border_color->g; @@ -166,7 +201,8 @@ static void gradient_solid(RrAppearance *l, int w, int h) if (sp->interlaced) { for (i = 0; i < h; i += 2) - XDrawLine(RrDisplay(l->inst), l->pixmap, RrColorGC(sp->secondary), + XDrawLine(RrDisplay(l->inst), l->pixmap, + RrColorGC(sp->interlace_color), 0, i, w, i); }