Merge pull request #68 from veltza/fix-flickering-sixels
Fix flickering when sixel images are moving
This commit is contained in:
commit
df36caf56b
23
x.c
23
x.c
|
@ -2744,22 +2744,10 @@ xfinishdraw(void)
|
||||||
{
|
{
|
||||||
#if SIXEL_PATCH
|
#if SIXEL_PATCH
|
||||||
ImageList *im;
|
ImageList *im;
|
||||||
int x, y;
|
|
||||||
int n = 0;
|
|
||||||
int nlimit = 256;
|
|
||||||
XRectangle *rects = NULL;
|
|
||||||
XGCValues gcvalues;
|
XGCValues gcvalues;
|
||||||
GC gc;
|
GC gc;
|
||||||
#endif // SIXEL_PATCH
|
#endif // SIXEL_PATCH
|
||||||
|
|
||||||
#if !SINGLE_DRAWABLE_BUFFER_PATCH
|
|
||||||
XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, win.w,
|
|
||||||
win.h, 0, 0);
|
|
||||||
#endif // SINGLE_DRAWABLE_BUFFER_PATCH
|
|
||||||
XSetForeground(xw.dpy, dc.gc,
|
|
||||||
dc.col[IS_SET(MODE_REVERSE)?
|
|
||||||
defaultfg : defaultbg].pixel);
|
|
||||||
|
|
||||||
#if SIXEL_PATCH
|
#if SIXEL_PATCH
|
||||||
for (im = term.images; im; im = im->next) {
|
for (im = term.images; im; im = im->next) {
|
||||||
if (term.images == NULL) {
|
if (term.images == NULL) {
|
||||||
|
@ -2810,7 +2798,6 @@ xfinishdraw(void)
|
||||||
im->pixels = NULL;
|
im->pixels = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
n = 0;
|
|
||||||
memset(&gcvalues, 0, sizeof(gcvalues));
|
memset(&gcvalues, 0, sizeof(gcvalues));
|
||||||
gc = XCreateGC(xw.dpy, xw.win, 0, &gcvalues);
|
gc = XCreateGC(xw.dpy, xw.win, 0, &gcvalues);
|
||||||
|
|
||||||
|
@ -2822,10 +2809,14 @@ xfinishdraw(void)
|
||||||
XFreeGC(xw.dpy, gc);
|
XFreeGC(xw.dpy, gc);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
free(rects);
|
|
||||||
drawregion(0, 0, term.col, term.row);
|
|
||||||
#endif // SIXEL_PATCH
|
#endif // SIXEL_PATCH
|
||||||
|
|
||||||
|
#if !SINGLE_DRAWABLE_BUFFER_PATCH
|
||||||
|
XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, win.w, win.h, 0, 0);
|
||||||
|
#endif // SINGLE_DRAWABLE_BUFFER_PATCH
|
||||||
|
XSetForeground(xw.dpy, dc.gc,
|
||||||
|
dc.col[IS_SET(MODE_REVERSE)?
|
||||||
|
defaultfg : defaultbg].pixel);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue