From 5fcfe1a19a60bec9ae888d7e9aafde91e912a55c Mon Sep 17 00:00:00 2001 From: James Date: Mon, 14 Jun 2021 10:06:29 +0000 Subject: [PATCH] Add amdgpu screen tearing fix --- _fix-amdgpu-screen-tearing.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 _fix-amdgpu-screen-tearing.txt diff --git a/_fix-amdgpu-screen-tearing.txt b/_fix-amdgpu-screen-tearing.txt new file mode 100644 index 0000000..2f8de87 --- /dev/null +++ b/_fix-amdgpu-screen-tearing.txt @@ -0,0 +1,16 @@ +# Refer to - https://linuxreviews.org/HOWTO_fix_screen_tearing +# Create "/etc/X11/xorg.conf.d/20-amdgpu.conf" with the contents below + +Section "Device" + Identifier "AMD Graphics" + Driver "amdgpu" + Option "TearFree" "true" +EndSection + +# Log out and back in / restart x11 - then verify "TearFree" is enabled on all displays like this: + +$ xrandr --verbose | grep Tear + TearFree: on + TearFree: on + TearFree: on + TearFree: on -- GitLab