diff options
author | Po Lu <luangruo@yahoo.com> | 2022-09-30 14:54:15 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-09-30 14:54:24 +0800 |
commit | 12a78711c94ccf5c46dd4e9653596c87b6fe0a18 (patch) | |
tree | 0b071cec0b9fe1b8dbcb183cfc71fe8fb8e14332 /etc/TODO | |
parent | b7a3770ecc5da938c37cfcc50a69902aa57bf2bf (diff) | |
download | emacs-12a78711c94ccf5c46dd4e9653596c87b6fe0a18.tar.gz emacs-12a78711c94ccf5c46dd4e9653596c87b6fe0a18.tar.bz2 emacs-12a78711c94ccf5c46dd4e9653596c87b6fe0a18.zip |
Fix calculation of frame times when X server time overflows
* etc/TODO: Add TODO about frame synchronization and animations.
* src/xterm.c (x_display_set_last_user_time): Handle cases when
the monotonic time is not the server time due to the latter
overflowing.
Diffstat (limited to 'etc/TODO')
-rw-r--r-- | etc/TODO | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1763,6 +1763,26 @@ enough environment under which the fix can be tested. The MPX code has not been tested under X toolkit or GTK+ 2.x builds and is not expected to work there. +** Framework for doing animations +Emacs does animations all over the place, usually "pluse" animations. +These currently animate by waiting for a small but fixed amount of +time between each redisplay, which causes screen tearing by not +synchronizing with the vertical refresh. Frame synchronization works +by causing redisplay to delay until the next time the monitor can +refresh; this works, but can cause substandard frame rate when +redisplay happens less often than the monitor refreshing, as redisplay +will have to continually wait for missed monitor refresh. + +The right remedy for this problem is to define a function that returns +the amount of time remaining before the next vertical blanking period, +and to schedule animation redisplay within that period, using the +information provided by the _NET_WM_FRAME_DRAWN and +_NET_WM_FRAME_TIMINGS compositor messages on X and the +BScreen::GetMonitorInfo function on Haiku. Ideally, all features +performing animations should be modified to use that method of +scheduling redisplay. Examples include xref-pulse-momentarily and +pixel-scroll-precision-start-momentum. + This file is part of GNU Emacs. |