Trait openxr::Graphics[][src]

pub trait Graphics: Sized {
    type Requirements;
    type SessionCreateInfo;
    type Format: Copy;
    type SwapchainImage;
}
Expand description

Static dispatch for OpenXR graphics bindings

The types and functions defined by this trait are an implementation detail, and should not be referenced externally.

Associated Types

Compatibility details within this graphics API

Parameters required to construct a session for use with this graphics API

Swapchain image formats

Identifiers for images to render to

Implementors