[][src]Trait openxr::Graphics

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

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

type Requirements

Compatibility details within this graphics API

type SessionCreateInfo

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

type Format: Copy

Swapchain image formats

type SwapchainImage

Identifiers for images to render to

Loading content...

Implementors

impl Graphics for OpenGL[src]

type Requirements = Requirements

type SessionCreateInfo = SessionCreateInfo

type Format = u32

type SwapchainImage = u32

impl Graphics for Vulkan[src]

type Requirements = Requirements

type Format = VkFormat

type SessionCreateInfo = SessionCreateInfo

type SwapchainImage = VkImage

Loading content...