Как легко избавится от тиринга? Сегодня поговорим на эту тематику. Что бы избавится от тиринга нужно создать файл для intel:
20-intel.conf
для amd:
20-radeon.conf
по следующему адресу: /etc/X11/xorg.conf.d.
Содержимое файла будет следующим, для intel:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection
Для amd:
Section "Device"
Identifier "Radeon Graphics"
Driver "radeon"
Option "AccelMethod" "glamor"
Option "DRI" "3"
Option "TearFree" "true"
EndSection
Так же на своей практике я создавал файл 10-intel.conf на Debian по следующему адресу:
/usr/share/X11/xorg.conf.d/
Вписывал в него приведенный выше пример для intel.
Приведу еще несколько вариантов конфигураций для избавления от тиринга
AMD Mobile\Desktop
Section "Device"
Identifier "Radeon"
Driver "radeon"
Option "TearFree" "on"
EndSection
2.Intel Desktop
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "TearFree" "true"
EndSection
3.Intel Desktop 2
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
Материал взят с сайта "Cyber-X.ru"