--- rxvt-unicode/src/rxvtfont.C 2008/01/23 09:42:02 1.134 +++ rxvt-unicode/src/rxvtfont.C 2008/01/23 14:18:19 1.140 @@ -238,23 +238,20 @@ else if (color >= 0) { #if XFT - bool done = false; + Picture dst; # ifdef HAVE_BG_PIXMAP - if (term->bgPixmap.pixmap && color >= 0 && !term->pix_colors[color].is_opaque ()) + if (term->bgPixmap.pixmap + && !term->pix_colors[color].is_opaque () + && ((dst = XftDrawPicture (d)))) { - Picture dst = XftDrawPicture (d); + XClearArea (disp, d, x, y, w, h, false); - if (dst != 0) - { - XClearArea (disp, d, x, y, w, h, false); - Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c); - XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h); - done = true; - } + Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c); + XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h); } + else # endif - if (!done) XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h); #else @@ -1309,6 +1306,7 @@ #ifdef FORCE_UNBUFFERED_XFT buffered = false; #endif + buffered=false;//D // cut trailing spaces while (len && text [len - 1] == ' ') @@ -1347,16 +1345,15 @@ { if (ep != enc) { - bool back_rendered = false; rxvt_drawable &d2 = d.screen->scratch_drawable (w, h); #ifdef HAVE_BG_PIXMAP + Picture dst = 0; if (term->bgPixmap.pixmap - && !(bg >= 0 && term->pix_colors[bg].is_opaque ())) + && (bg == Color_transparent || bg == Color_bg + || (bg >= 0 && !term->pix_colors[bg].is_opaque () && ((dst = XftDrawPicture (d2)))))) { - Picture dst = XftDrawPicture (d2); - int src_x = x, src_y = y; if (term->bgPixmap.is_parentOrigin ()) @@ -1365,8 +1362,8 @@ src_y += term->window_vt_y; } - if (term->bgPixmap.pmap_width >= src_x+w - && term->bgPixmap.pmap_height >= src_y+h) + if (term->bgPixmap.pmap_width >= src_x + w + && term->bgPixmap.pmap_height >= src_y + h) { XCopyArea (disp, term->bgPixmap.pixmap, d2, gc, src_x, src_y, w, h, 0, 0); @@ -1390,18 +1387,16 @@ XChangeGC (disp, gc, GCFillStyle, &gcv); } - if (bg >= 0 && dst) // colour must be (and is) non-opaque here + if (dst) { Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c); + XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h); } - - back_rendered = true; } + else #endif - - if (!back_rendered) - XftDrawRect (d2, &term->pix_colors[bg < 0 ? Color_bg : bg].c, 0, 0, w, h); + clear_rect (d, x, y, w, h, bg); XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);