logoalt Hacker News

ginkotoday at 7:01 AM1 replyview on HN

Worst was with the discussion about Wayland having extra latency on mouse pointer movements. The explanation there was that X11 used HW pointer device that got updated as soon as there was a change but that might lead to gasp occasional pointer tearing. So better add a couple ms of latency to everything in Wayland and sample the mouse pointer position once per frame.

FWIW, I do see screen tearing on my X11 multi-monitor setup. I just don't care.


Replies

simonciontoday at 9:25 AM

> FWIW, I do see screen tearing on my X11 multi-monitor setup. I just don't care.

If you ever get really bored one day, and you have nothing else to do, and you're using AMD/ATi hardware, try enabling the TearFree option for your video card driver. Something like

  Section "Device"
   Identifier "AMD"
   Driver "amdgpu"
   Option "TearFree" "on"
  EndSection

in a new .conf file in '/etc/X11/xorg.conf.d' and a restart of your display server(s) should do the trick. It works fine for me, and has worked fine for like a decade or more.