From d989a9c555eea064d8b559860e9f9cc0e5f3df63 Mon Sep 17 00:00:00 2001 From: "Dominik V. Salonen" Date: Thu, 29 Mar 2018 18:53:05 +0000 Subject: [PATCH] xrender seems to work properly now Had issues with xrender on my R9 270X in the past, thus I used glx, though it introduced some slight delays. Seems to work fine now so I'll try switching to xrender --- display/compositor/compton.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/display/compositor/compton.conf b/display/compositor/compton.conf index 035659b..6194180 100644 --- a/display/compositor/compton.conf +++ b/display/compositor/compton.conf @@ -1,10 +1,10 @@ # Symlink as ~/.config/compton.conf -backend = "glx"; +backend = "xrender"; paint-on-overlay = true; glx-no-stencil = true; glx-no-rebind-pixmap = true; -vsync = "opengl-swc"; +vsync = "opengl"; # These are important. The first one enables the opengl backend. The last one is the vsync method. Depending on the driver you might need to use a different method. # The other options are smaller performance tweaks that work well in most cases.