fixed pixmap buffer drawing.
This commit is contained in:
parent
eab9aad1dc
commit
b4f623f910
1 changed files with 3 additions and 3 deletions
6
st.c
6
st.c
|
@ -373,11 +373,11 @@ tscrollup (int n) {
|
||||||
for(i = 0; i < n; i++)
|
for(i = 0; i < n; i++)
|
||||||
memset(term.line[term.top+i], 0, term.col*sizeof(Glyph));
|
memset(term.line[term.top+i], 0, term.col*sizeof(Glyph));
|
||||||
|
|
||||||
for(i = term.top; i <= term.bot-n; i++) {
|
for(i = term.top; i <= term.bot-n; i++) {
|
||||||
temp = term.line[i];
|
temp = term.line[i];
|
||||||
term.line[i] = term.line[i+n];
|
term.line[i] = term.line[i+n];
|
||||||
term.line[i+n] = temp;
|
term.line[i+n] = temp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -1181,7 +1181,7 @@ draw(int redraw_all) {
|
||||||
char buf[DRAW_BUF_SIZ];
|
char buf[DRAW_BUF_SIZ];
|
||||||
|
|
||||||
XSetForeground(xw.dis, dc.gc, dc.col[DefaultBG]);
|
XSetForeground(xw.dis, dc.gc, dc.col[DefaultBG]);
|
||||||
XFillRectangle(xw.dis, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
|
XFillRectangle(xw.dis, xw.buf, dc.gc, 0, 0, xw.bufw, xw.bufh);
|
||||||
for(y = 0; y < term.row; y++) {
|
for(y = 0; y < term.row; y++) {
|
||||||
base = term.line[y][0];
|
base = term.line[y][0];
|
||||||
i = ox = 0;
|
i = ox = 0;
|
||||||
|
|
Loading…
Reference in a new issue