Enum vulkano::swapchain::PresentMode [] [src]

#[repr(u32)]
pub enum PresentMode { Immediate, Mailbox, Fifo, Relaxed, }

The way presenting a swapchain is accomplished.

Variants

Immediately shows the image to the user. May result in visible tearing.

The action of presenting an image puts it in wait. When the next vertical blanking period happens, the waiting image is effectively shown to the user. If an image is presented while another one is waiting, it is replaced.

The action of presenting an image adds it to a queue of images. At each vertical blanking period, the queue is poped and an image is presented.

Guaranteed to be always supported.

This is the equivalent of OpenGL's SwapInterval with a value of 1.

Same as Fifo, except that if the queue was empty during the previous vertical blanking period then it is equivalent to Immediate.

This is the equivalent of OpenGL's SwapInterval with a value of -1.

Trait Implementations

impl Copy for PresentMode
[src]

impl Clone for PresentMode
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PresentMode
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for PresentMode
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for PresentMode
[src]