[hackers] [st] Removing the overdrawing of some fonts. || Christoph Lohmann

From: <git_AT_suckless.org>
Date: Tue, 23 Apr 2013 19:19:39 +0200

commit db6f796ecfafcee879613b60a772be3e5d9e355e
Author: Christoph Lohmann <20h_AT_r-36.net>
Date: Tue Apr 23 19:17:50 2013 +0200

    Removing the overdrawing of some fonts.

diff --git a/st.c b/st.c
index f593302..f2ee12f 100644
--- a/st.c
+++ b/st.c
_AT_@ -36,6 +36,7 @@ char *argv0;
 #define Draw XftDraw *
 #define Colour XftColor
 #define Colourmap Colormap
+#define Rectangle XRectangle
 
 #if defined(__linux)
  #include <pty.h>
_AT_@ -2764,6 +2765,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
         FcCharSet *fccharset;
         Colour *fg, *bg, *temp, revfg, revbg;
         XRenderColor colfg, colbg;
+ Rectangle r;
 
         frcflags = FRC_NORMAL;
 
_AT_@ -2851,6 +2853,11 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
 
         /* Clean up the region we want to draw to. */
         XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
+ r.x = 0;
+ r.y = 0;
+ r.height = xw.ch;
+ r.width = width;
+ XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
 
         fcsets[0] = font->set;
         for(xp = winx; bytelen > 0;) {
_AT_@ -2885,6 +2892,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
                                                         (FcChar8 *)u8fs,
                                                         u8fblen);
                                         xp += font->width * u8fl;
+
                                 }
                                 break;
                         }
_AT_@ -2969,6 +2977,9 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
                 XftDrawRect(xw.draw, fg, winx, winy + font->ascent + 1,
                                 width, 1);
         }
+
+ /* Reset clip to none. */
+ XftDrawSetClip(xw.draw, 0);
 }
 
 void
Received on Tue Apr 23 2013 - 19:19:39 CEST

This archive was generated by hypermail 2.3.0 : Tue Apr 23 2013 - 19:24:11 CEST