summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2020-06-04 17:35:08 +0300
committerAmbrose <me@librelife.org>2026-02-15 16:38:38 -0500
commitee7c8b823495bddacfd473c79a9fa7d0253ff875 (patch)
tree52a53ffa2fad940c0495787b1d9f4f479e0fb399
parent67d56d9587325a5874d70aaa9cbee8bcb7cc9ac7 (diff)
support w3m images
w3m images are a hack which renders on top of the terminal's drawable, which didn't work in st because when using double buffering, the front buffer (on which w3m draws its images) is ignored, and st draws only on the back buffer, which is then copied to the front buffer. There's a patch to make it work at the FAQ already, but that patch canceles double-buffering, which can have negative side effects on some cases such as flickering. This patch achieves the same goal but instead of canceling the double buffer it first copies the front buffer to the back buffer. This has the same issues as the FAQ patch in that the cursor line is deleted at the image (because st renders always full lines), but otherwise it's simpler and does keeps double buffering.
-rw-r--r--x.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/x.c b/x.c
index b844f85..8fb8f73 100644
--- a/x.c
+++ b/x.c
@@ -1689,6 +1689,8 @@ xsettitle(char *p)
int
xstartdraw(void)
{
+ if (IS_SET(MODE_VISIBLE))
+ XCopyArea(xw.dpy, xw.win, xw.buf, dc.gc, 0, 0, win.w, win.h, 0, 0);
return IS_SET(MODE_VISIBLE);
}