I found a few web sites that had instructions to place a file in /etc/X11/xorg.conf.d/ with certain information in the file, however this file did not work on either of my desktops, as the information presented in the file didn't apply to the AMD graphics chips I'm using.
The command xrandr --verbose | grep "TearFree" indicated the TearFree setting was: auto.
I took a look at the xorg.conf file in /etc/X11/ and scrolled down to where it references the driver. For both of my desktops, it's "ati" and the Identifier is "device1". The Identifier displayed in the information I found online was completely different. So I decided to write a new file named 20-ati.conf and placed it in /etc/X11/xorg.conf.d/ with the following in it:
- Code: Select all
Section "Device"
Identifier "device1"
Driver "ati"
Option "TearFree" "true"
EndSection
then rebooted.
After logging in, I ran xrandr again and it resulted in:
- Code: Select all
~]$ xrandr --verbose | grep "TearFree"
TearFree: on
TearFree: on
I am no longer experiencing screen tearing.
I hope this information will be helpful to anyone else who is experiencing this issue.