[hackers] [st] xtermclear() is now done by xdrawglyphfontspecs() || Christoph Lohmann

From: <git_AT_suckless.org>
Date: Mon, 7 Mar 2016 14:33:59 +0100 (CET)

commit 30440295bc054f37a2a8275acca769cd83bcb780
Author: Christoph Lohmann <20h_AT_r-36.net>
AuthorDate: Mon Mar 7 14:33:05 2016 +0100
Commit: Christoph Lohmann <20h_AT_r-36.net>
CommitDate: Mon Mar 7 14:33:05 2016 +0100

    xtermclear() is now done by xdrawglyphfontspecs()
    
    Thanks Ton van den Heuvel for the proposal!

diff --git a/st.c b/st.c
index 0536b6f..2473af7 100644
--- a/st.c
+++ b/st.c
_AT_@ -439,7 +439,6 @@ static void xresettitle(void);
 static void xsetpointermotion(int);
 static void xseturgency(int);
 static void xsetsel(char *, Time);
-static void xtermclear(int, int, int, int);
 static void xunloadfont(Font *);
 static void xunloadfonts(void);
 static void xresize(int, int);
_AT_@ -3213,17 +3212,6 @@ xsetcolorname(int x, const char *name)
         return 0;
 }
 
-void
-xtermclear(int col1, int row1, int col2, int row2)
-{
- XftDrawRect(xw.draw,
- &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
- borderpx + col1 * xw.cw,
- borderpx + row1 * xw.ch,
- (col2-col1+1) * xw.cw,
- (row2-row1+1) * xw.ch);
-}
-
 /*
  * Absolute coordinates.
  */
_AT_@ -3983,7 +3971,6 @@ drawregion(int x1, int y1, int x2, int y2)
                 if (!term.dirty[y])
                         continue;
 
- xtermclear(0, y, term.col, y);
                 term.dirty[y] = 0;
 
                 specs = term.specbuf;
Received on Mon Mar 07 2016 - 14:33:59 CET

This archive was generated by hypermail 2.3.0 : Mon Mar 07 2016 - 14:36:25 CET