ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtfont.C
(Generate patch)

Comparing rxvt-unicode/src/rxvtfont.C (file contents):
Revision 1.136 by root, Wed Jan 23 10:56:25 2008 UTC vs.
Revision 1.139 by root, Wed Jan 23 14:09:21 2008 UTC

241 Picture dst; 241 Picture dst;
242 242
243# ifdef HAVE_BG_PIXMAP 243# ifdef HAVE_BG_PIXMAP
244 if (term->bgPixmap.pixmap 244 if (term->bgPixmap.pixmap
245 && !term->pix_colors[color].is_opaque () 245 && !term->pix_colors[color].is_opaque ()
246 && ((Picture dst = XftDrawPicture (d)))) 246 && ((dst = XftDrawPicture (d))))
247 { 247 {
248 XClearArea (disp, d, x, y, w, h, false); 248 XClearArea (disp, d, x, y, w, h, false);
249 249
250 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c); 250 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c);
251 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h); 251 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, x, y, w, h);
1304 */ 1304 */
1305 bool buffered = bg >= Color_transparent; 1305 bool buffered = bg >= Color_transparent;
1306#ifdef FORCE_UNBUFFERED_XFT 1306#ifdef FORCE_UNBUFFERED_XFT
1307 buffered = false; 1307 buffered = false;
1308#endif 1308#endif
1309 buffered=false;//D
1309 1310
1310 // cut trailing spaces 1311 // cut trailing spaces
1311 while (len && text [len - 1] == ' ') 1312 while (len && text [len - 1] == ' ')
1312 len--; 1313 len--;
1313 1314
1342 1343
1343 if (buffered) 1344 if (buffered)
1344 { 1345 {
1345 if (ep != enc) 1346 if (ep != enc)
1346 { 1347 {
1347 bool back_rendered = false;
1348 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h); 1348 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h);
1349 1349
1350#ifdef HAVE_BG_PIXMAP 1350#ifdef HAVE_BG_PIXMAP
1351 Picture dst = 0;
1351 1352
1352 if (term->bgPixmap.pixmap 1353 if (term->bgPixmap.pixmap
1353 && !(bg >= 0 && term->pix_colors[bg].is_opaque ())) 1354 && (bg == Color_transparent || bg == Color_bg
1355 || (bg >= 0 && !term->pix_colors[bg].is_opaque () && ((dst = XftDrawPicture (d2))))))
1354 { 1356 {
1355 Picture dst = XftDrawPicture (d2);
1356
1357 int src_x = x, src_y = y; 1357 int src_x = x, src_y = y;
1358 1358
1359 if (term->bgPixmap.is_parentOrigin ()) 1359 if (term->bgPixmap.is_parentOrigin ())
1360 { 1360 {
1361 src_x += term->window_vt_x; 1361 src_x += term->window_vt_x;
1362 src_y += term->window_vt_y; 1362 src_y += term->window_vt_y;
1363 } 1363 }
1364 1364
1365 if (term->bgPixmap.pmap_width >= src_x+w 1365 if (term->bgPixmap.pmap_width >= src_x + w
1366 && term->bgPixmap.pmap_height >= src_y+h) 1366 && term->bgPixmap.pmap_height >= src_y + h)
1367 { 1367 {
1368 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc, 1368 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1369 src_x, src_y, w, h, 0, 0); 1369 src_x, src_y, w, h, 0, 0);
1370 } 1370 }
1371 else 1371 else
1385 1385
1386 gcv.fill_style = FillSolid; 1386 gcv.fill_style = FillSolid;
1387 XChangeGC (disp, gc, GCFillStyle, &gcv); 1387 XChangeGC (disp, gc, GCFillStyle, &gcv);
1388 } 1388 }
1389 1389
1390 if (bg >= 0 && dst) // colour must be (and is) non-opaque here 1390 if (dst)
1391 { 1391 {
1392 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c); 1392 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1393
1393 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h); 1394 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1394 } 1395 }
1395
1396 back_rendered = true;
1397 } 1396 }
1397 else
1398#endif 1398#endif
1399
1400 if (!back_rendered)
1401 XftDrawRect (d2, &term->pix_colors[bg < 0 ? Color_bg : bg].c, 0, 0, w, h); 1399 XftDrawRect (d2, &term->pix_colors[bg == Color_transparent ? Color_bg : bg].c, 0, 0, w, h);
1402 1400
1403 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); 1401 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1404 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y); 1402 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1405 } 1403 }
1406 else 1404 else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines