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.127 by ayin, Mon Jan 7 12:41:31 2008 UTC vs.
Revision 1.128 by root, Wed Jan 23 05:14:11 2008 UTC

1296 dTermGC; 1296 dTermGC;
1297 1297
1298 int w = term->fwidth * len; 1298 int w = term->fwidth * len;
1299 int h = term->fheight; 1299 int h = term->fheight;
1300 1300
1301 /* TODO: this logic needs some more thinking, since we no longer do pseudo-transparency. 1301 /*
1302 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a 1302 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a
1303 * good idea from the perspective of packaging for wide variety of user configs. 1303 * good idea from the perspective of packaging for wide variety of user configs.
1304 */ 1304 */
1305 bool buffered = true 1305 bool buffered = bg >= 0;
1306#ifdef FORCE_UNBUFFERED_XFT 1306#ifdef FORCE_UNBUFFERED_XFT
1307 && bg >= 0 1307 buffered = false;
1308#endif 1308#endif
1309 ; 1309
1310 // cut trailing spaces 1310 // cut trailing spaces
1311 while (len && text [len - 1] == ' ') 1311 while (len && text [len - 1] == ' ')
1312 len--; 1312 len--;
1313 1313
1314 int x_ = buffered ? 0 : x; 1314 int x_ = buffered ? 0 : x;
1340 x_ += cwidth; 1340 x_ += cwidth;
1341 } 1341 }
1342 1342
1343 if (buffered) 1343 if (buffered)
1344 { 1344 {
1345 bool back_rendered = false;
1346 if (ep != enc) 1345 if (ep != enc)
1347 { 1346 {
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 if (term->bgPixmap.pixmap) 1351 if (term->bgPixmap.pixmap)
1352 { 1352 {
1353 Picture dst = 0; 1353 Picture dst = 0;
1354 1354
1355 if (bg >= 0 && term->pix_colors[bg].c.color.alpha < 0x0ff00) 1355 if (bg >= 0 && term->pix_colors[bg].c.color.alpha < 0xff00)
1356 dst = XftDrawPicture (d2); 1356 dst = XftDrawPicture (d2);
1357 1357
1358 if (bg < 0 || dst != 0) 1358 if (bg < 0 || dst != 0)
1359 { 1359 {
1360 int src_x = x, src_y = y ; 1360 int src_x = x, src_y = y ;
1399 back_rendered = true; 1399 back_rendered = true;
1400 } 1400 }
1401 } 1401 }
1402#endif 1402#endif
1403 1403
1404 if (bg >= 0 && !back_rendered) 1404 if (!back_rendered)
1405 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h); 1405 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h);
1406 1406
1407 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); 1407 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1408 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y); 1408 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1409 } 1409 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines