summaryrefslogtreecommitdiff
path: root/etc/TODO
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-09-30 14:54:15 +0800
committerPo Lu <luangruo@yahoo.com>2022-09-30 14:54:24 +0800
commit12a78711c94ccf5c46dd4e9653596c87b6fe0a18 (patch)
tree0b071cec0b9fe1b8dbcb183cfc71fe8fb8e14332 /etc/TODO
parentb7a3770ecc5da938c37cfcc50a69902aa57bf2bf (diff)
downloademacs-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/TODO20
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/TODO b/etc/TODO
index fefc586123e..d884539037d 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -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.