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.134 by root, Wed Jan 23 09:42:02 2008 UTC vs.
Revision 1.146 by ayin, Sat Jan 26 14:24:43 2008 UTC

1/*----------------------------------------------------------------------* 1/*----------------------------------------------------------------------*
2 * File: rxvtfont.C 2 * File: rxvtfont.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * Copyright (c) 2003-2006 Marc Lehmann <pcg@goof.com> 4 * Copyright (c) 2003-2008 Marc Lehmann <pcg@goof.com>
5 * - original version. 5 * - original version.
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or 9 * the Free Software Foundation; either version 2 of the License, or
236 if (color == Color_bg || color == Color_transparent) 236 if (color == Color_bg || color == Color_transparent)
237 XClearArea (disp, d, x, y, w, h, false); 237 XClearArea (disp, d, x, y, w, h, false);
238 else if (color >= 0) 238 else if (color >= 0)
239 { 239 {
240#if XFT 240#if XFT
241 bool done = false; 241 Picture dst;
242 242
243# ifdef HAVE_BG_PIXMAP 243# ifdef HAVE_BG_PIXMAP
244 if (term->bgPixmap.pixmap && color >= 0 && !term->pix_colors[color].is_opaque ()) 244 if (term->bgPixmap.pixmap
245 { 245 && !term->pix_colors[color].is_opaque ()
246 Picture dst = XftDrawPicture (d); 246 && ((dst = XftDrawPicture (d))))
247
248 if (dst != 0)
249 { 247 {
250 XClearArea (disp, d, x, y, w, h, false); 248 XClearArea (disp, d, x, y, w, h, false);
249
251 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c); 250 Picture solid_color_pict = XftDrawSrcPicture (d, &term->pix_colors[color].c);
252 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);
253 done = true;
254 } 252 }
255 } 253 else
256# endif 254# endif
257 if (!done)
258 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h); 255 XftDrawRect (d, &term->pix_colors[color].c, x, y, w, h);
259 256
260#else 257#else
261 XSetForeground (disp, gc, term->pix_colors[color]); 258 XSetForeground (disp, gc, term->pix_colors[color]);
262 XFillRectangle (disp, d, gc, x, y, w, h); 259 XFillRectangle (disp, d, gc, x, y, w, h);
1303 1300
1304 /* 1301 /*
1305 * 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
1306 * 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.
1307 */ 1304 */
1308 bool buffered = bg >= Color_transparent; 1305 bool buffered = bg >= Color_transparent
1309#ifdef FORCE_UNBUFFERED_XFT 1306 && term->option (Opt_buffered);
1310 buffered = false;
1311#endif
1312 1307
1313 // cut trailing spaces 1308 // cut trailing spaces
1314 while (len && text [len - 1] == ' ') 1309 while (len && text [len - 1] == ' ')
1315 len--; 1310 len--;
1316 1311
1345 1340
1346 if (buffered) 1341 if (buffered)
1347 { 1342 {
1348 if (ep != enc) 1343 if (ep != enc)
1349 { 1344 {
1350 bool back_rendered = false;
1351 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h); 1345 rxvt_drawable &d2 = d.screen->scratch_drawable (w, h);
1352 1346
1353#ifdef HAVE_BG_PIXMAP 1347#ifdef HAVE_BG_PIXMAP
1348 Picture dst = 0; // the only assignment is done conditionally in the following if condition
1354 1349
1355 if (term->bgPixmap.pixmap 1350 if (term->bgPixmap.pixmap
1356 && !(bg >= 0 && term->pix_colors[bg].is_opaque ())) 1351 && (bg == Color_transparent || bg == Color_bg
1352 || (bg >= 0 && !term->pix_colors[bg].is_opaque () && ((dst = XftDrawPicture (d2))))))
1357 { 1353 {
1358 Picture dst = XftDrawPicture (d2);
1359
1360 int src_x = x, src_y = y; 1354 int src_x = x, src_y = y;
1361 1355
1362 if (term->bgPixmap.is_parentOrigin ()) 1356 if (term->bgPixmap.is_parentOrigin ())
1363 { 1357 {
1364 src_x += term->window_vt_x; 1358 src_x += term->window_vt_x;
1365 src_y += term->window_vt_y; 1359 src_y += term->window_vt_y;
1366 } 1360 }
1367 1361
1368 if (term->bgPixmap.pmap_width >= src_x+w 1362 if (term->bgPixmap.pmap_width >= src_x + w
1369 && term->bgPixmap.pmap_height >= src_y+h) 1363 && term->bgPixmap.pmap_height >= src_y + h)
1370 { 1364 {
1371 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc, 1365 XCopyArea (disp, term->bgPixmap.pixmap, d2, gc,
1372 src_x, src_y, w, h, 0, 0); 1366 src_x, src_y, w, h, 0, 0);
1373 } 1367 }
1374 else 1368 else
1388 1382
1389 gcv.fill_style = FillSolid; 1383 gcv.fill_style = FillSolid;
1390 XChangeGC (disp, gc, GCFillStyle, &gcv); 1384 XChangeGC (disp, gc, GCFillStyle, &gcv);
1391 } 1385 }
1392 1386
1393 if (bg >= 0 && dst) // colour must be (and is) non-opaque here 1387 if (dst)
1394 { 1388 {
1395 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c); 1389 Picture solid_color_pict = XftDrawSrcPicture (d2, &term->pix_colors[bg].c);
1390
1391 // dst can only be set when bg >= 0
1396 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h); 1392 XRenderComposite (disp, PictOpOver, solid_color_pict, None, dst, 0, 0, 0, 0, 0, 0, w, h);
1397 } 1393 }
1398
1399 back_rendered = true;
1400 } 1394 }
1395 else
1401#endif 1396#endif
1402
1403 if (!back_rendered)
1404 XftDrawRect (d2, &term->pix_colors[bg < 0 ? Color_bg : bg].c, 0, 0, w, h); 1397 XftDrawRect (d2, &term->pix_colors[bg >= 0 ? bg : Color_bg].c, 0, 0, w, h);
1405 1398
1406 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc); 1399 XftDrawGlyphSpec (d2, &term->pix_colors[fg].c, f, enc, ep - enc);
1407 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y); 1400 XCopyArea (disp, d2, d, gc, 0, 0, w, h, x, y);
1408 } 1401 }
1409 else 1402 else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines