#non-constant delta time in PresentMode::AutoVsync and Immediate
3 messages · Page 1 of 1 (latest)
from https://github.com/bevyengine/bevy/blob/3281aea5c23495664c8c5dbd1bec57b0ca41f359/crates/bevy_window/src/window.rs#L676:
Presentation mode for a window.
The presentation mode specifies when a frame is presented to the window. The Fifo
option corresponds to a traditional VSync, where the framerate is capped by the
display refresh rate. Both Immediate and Mailbox are low-latency and are not
capped by the refresh rate, but may not be available on all platforms. Tearing
may be observed with Immediate mode, but will not be observed with Mailbox or
Fifo.