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.106 by root, Thu Nov 2 17:23:50 2006 UTC vs.
Revision 1.117 by root, Tue Aug 28 17:35:30 2007 UTC

1272 dTermGC; 1272 dTermGC;
1273 1273
1274 int w = term->fwidth * len; 1274 int w = term->fwidth * len;
1275 int h = term->fheight; 1275 int h = term->fheight;
1276 1276
1277 bool buffered = bg >= 0 // we don't use a transparent bg 1277 /* TODO: this logic needs some more thinking, since we no longer do pseudo-transparency.
1278 * Maybe make buffering into a resource flag? Compile time option doesn't seems like a
1279 * good idea from the perspective of packaging for wide variety of user configs.
1280 */
1281 bool buffered = true
1278#ifndef FORCE_UNBUFFERED_XFT 1282#ifdef FORCE_UNBUFFERED_XFT
1279# if defined(XPM_BACKGROUND) || defined(TRANSPARENT) 1283 && bg >= 0
1280 || !term->am_transparent // we aren't transparent
1281 || term->am_pixmap_trans // we have a pixmap
1282# endif
1283#endif 1284#endif
1284 ; 1285 ;
1285
1286 // cut trailing spaces 1286 // cut trailing spaces
1287 while (len && text [len - 1] == ' ') 1287 while (len && text [len - 1] == ' ')
1288 len--; 1288 len--;
1289 1289
1290 int x_ = buffered ? 0 : x; 1290 int x_ = buffered ? 0 : x;
1319 if (buffered) 1319 if (buffered)
1320 { 1320 {
1321 if (ep != enc) 1321 if (ep != enc)
1322 { 1322 {
1323 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h); 1323 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h);
1324 bool back_rendered = false;
1324 1325
1325 if (0) 1326#ifdef HAVE_BG_PIXMAP
1326 ;
1327#ifdef TRANSPARENT
1328 else if (bg < 0 && term->am_pixmap_trans)
1329 XCopyArea (disp, term->pixmap, d2, gc,
1330 x + term->window_vt_x, y + term->window_vt_y,
1331 w, h, 0, 0);
1332#endif
1333#ifdef XPM_BACKGROUND
1334 else if (bg < 0 && term->bgPixmap.pixmap) 1327 if (term->bgPixmap.pixmap)
1335 { 1328 {
1329 Picture dst = 0;
1330
1331 if (bg >= 0 && term->pix_colors[bg].c.color.alpha < 0x0ff00)
1332 dst = XftDrawPicture (d2);
1333
1334 if (bg < 0 || dst != 0)
1335 {
1336 if (term->bgPixmap.pmap_width >= x + term->window_vt_x+w
1337 && term->bgPixmap.pmap_height >= y + term->window_vt_y+h)
1338 {
1339 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1340 x + term->window_vt_x, y + term->window_vt_y,
1341 w, h, 0, 0);
1342 }
1343 else
1344 {
1336 XGCValues gcv; 1345 XGCValues gcv;
1337 1346
1338 gcv.fill_style = FillTiled; 1347 gcv.fill_style = FillTiled;
1339 gcv.tile = term->pixmap; 1348 gcv.tile = term->bgPixmap.pixmap;
1340 gcv.ts_x_origin = -x; 1349 gcv.ts_x_origin = -x;
1341 gcv.ts_y_origin = -y; 1350 gcv.ts_y_origin = -y;
1342 1351
1343 GC gc2 = XCreateGC (disp, d2, 1352 XChangeGC (disp, gc,
1344 GCTile | GCTileStipXOrigin | GCTileStipYOrigin | GCFillStyle, 1353 GCTile | GCTileStipXOrigin | GCTileStipYOrigin | GCFillStyle,
1345 &gcv); 1354 &gcv);
1346 1355
1347 XFillRectangle (disp, d2, gc2, 0, 0, w, h); 1356 XFillRectangle (disp, d2, gc, 0, 0, w, h);
1348 1357
1349 XFreeGC (disp, gc2); 1358 gcv.fill_style = FillSolid;
1359 XChangeGC (disp, gc, GCFillStyle, &gcv);
1360 }
1361
1362 if (bg >= 0)
1363 {
1364 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1365 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1366 }
1367
1368 back_rendered = true;
1369 }
1350 } 1370 }
1351#endif 1371#endif
1352 else 1372
1373 if (bg >= 0 && !back_rendered)
1353 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h); 1374 XftDrawRect (d2, &term->pix_colors[bg].c, 0, 0, w, h);
1354 1375
1355 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); 1376 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1356 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y); 1377 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1357 } 1378 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines