Section "Device"
Identifier "Card0"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
Section "Device"
Identifier "Card0"
Driver "modesetting"
Option "AccelMethod" "glamor"
EndSection
Section "Device"
Identifier "Card0"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
Section "Device"
Identifier "Card0"
Driver "intel"
Option "AccelMethod" "uxa"
EndSection
wheel:*:0:root,goshanecr
kmem:*:2:goshanecr
sys:*:3:goshanecr
operator:*:5:root,goshanecr
bin:*:7:goshanecr
games:*:13:goshanecr
video:*:44:goshanecr
goshanecr:*:1001:
messagebus:*:556:goshanecr
polkitd:*:565:goshanecr
polkit:*:562:goshanecr
haldaemon:*:560:goshanecr
Thank you. Option 2 solved screen tearing for me. I have TrueOS installed on a Dell Latitude E7450.If you use intel integrated graphics, you got few options to try:
1. Use modesetting driver, add this to /etc/X11/xorg.conf and restart Xorg:
Code:Section "Device" Identifier "Card0" Driver "modesetting" Option "AccelMethod" "glamor" EndSection
2. Use intel driver (x11-drivers/xf86-video-intel should be installed) with "SNA" acceleration,
add this to /etc/X11/xorg.conf and restart Xorg:
Code:Section "Device" Identifier "Card0" Driver "intel" Option "AccelMethod" "sna" Option "TearFree" "true" EndSection
3. Use intel driver (x11-drivers/xf86-video-intel should be installed) with "UXA" acceleration,
add this to /etc/X11/xorg.conf and restart Xorg:
Code:Section "Device" Identifier "Card0" Driver "intel" Option "AccelMethod" "uxa" EndSection