Struct openxr::Swapchain

source ·
pub struct Swapchain<G: Graphics> { /* private fields */ }
Expand description

A set of images to be rendered to using a particular graphics API G

Implementations§

source§

impl<G: Graphics> Swapchain<G>

source

pub unsafe fn from_raw(session: Session<G>, handle: Swapchain) -> Self

Take ownership of an existing swapchain handle

§Safety

handle must be a valid swapchain handle associated with session and created with flags.

source

pub fn as_raw(&self) -> Swapchain

Access the raw swapchain handle

source

pub fn instance(&self) -> &Instance

Access the Instance self is descended from

source

pub fn set_name(&mut self, name: &str) -> Result<()>

Set the debug name of this Swapchain, if XR_EXT_debug_utils is loaded

source

pub fn enumerate_images(&self) -> Result<Vec<G::SwapchainImage>>

source

pub fn acquire_image(&mut self) -> Result<u32>

Determine the index of the next image to render to in the swapchain image array

source

pub fn wait_image(&mut self, timeout: Duration) -> Result<()>

Wait for the compositor to finish reading from the oldest unwaited acquired image

source

pub fn release_image(&mut self) -> Result<()>

Release the oldest acquired image

Trait Implementations§

source§

impl<G: Graphics> Drop for Swapchain<G>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<G> !RefUnwindSafe for Swapchain<G>

§

impl<G> Send for Swapchain<G>
where G: Send,

§

impl<G> Sync for Swapchain<G>
where G: Sync,

§

impl<G> Unpin for Swapchain<G>
where G: Unpin,

§

impl<G> !UnwindSafe for Swapchain<G>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.