Answers for "screen tearing amd gpu ubuntu"

0

screen tearing amd gpu ubuntu

// Check this
xrandr --verbose | grep "TearFree"
// If TearFree is set to auto

cd /etc/X11
sudo mkdir xorg.conf.d && cd xorg.conf.d
sudo vim 20-amdgpu.conf

// And paste the following configuration
Section "Device"
        Identifier      "AMD Graphics"
        Driver          "amdgpu"
        Option          "TearFree" "true"
EndSection

// Then reboot or restart X11
Posted by: Guest on March-25-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language