Trait openxr::Graphics

source ·
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.

Required Associated Types§

source

type Requirements

Compatibility details within this graphics API

source

type SessionCreateInfo

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

source

type Format: Copy

Swapchain image formats

source

type SwapchainImage

Identifiers for images to render to

Object Safety§

This trait is not object safe.

Implementors§