PresentMode
AutoVsync
AutoNoVsync
Fifo
FifoRelaxed
Immediate
Mailbox
Description
Presentation mode for a [
Window
].The presentation mode specifies when a frame is presented to the window. The
Fifo
option corresponds to a traditionalVSync
, where the framerate is capped by the display refresh rate. BothImmediate
andMailbox
are low-latency and are not capped by the refresh rate, but may not be available on all platforms. Tearing may be observed withImmediate
mode, but will not be observed withMailbox
orFifo
.
AutoVsync
orAutoNoVsync
will gracefully fallback toFifo
when unavailable.
Immediate
orMailbox
will panic if not supported by the platform.