wgpu_hal

Trait Adapter

Source
pub trait Adapter<A: Api>: WasmNotSend + WasmNotSync {
    // Required methods
    unsafe fn open(
        &self,
        features: Features,
        limits: &Limits,
    ) -> Result<OpenDevice<A>, DeviceError>;
    unsafe fn texture_format_capabilities(
        &self,
        format: TextureFormat,
    ) -> TextureFormatCapabilities;
    unsafe fn surface_capabilities(
        &self,
        surface: &A::Surface,
    ) -> Option<SurfaceCapabilities>;
    unsafe fn get_presentation_timestamp(&self) -> PresentationTimestamp;
}

Required Methods§

Source

unsafe fn open( &self, features: Features, limits: &Limits, ) -> Result<OpenDevice<A>, DeviceError>

Source

unsafe fn texture_format_capabilities( &self, format: TextureFormat, ) -> TextureFormatCapabilities

Return the set of supported capabilities for a texture format.

Source

unsafe fn surface_capabilities( &self, surface: &A::Surface, ) -> Option<SurfaceCapabilities>

Returns the capabilities of working with a specified surface.

None means presentation is not supported for it.

Source

unsafe fn get_presentation_timestamp(&self) -> PresentationTimestamp

Creates a PresentationTimestamp using the adapter’s WSI.

Implementors§

Source§

impl Adapter<Api> for Context

Source§

impl Adapter<Api> for wgpu_hal::gles::Adapter

Source§

impl Adapter<Api> for wgpu_hal::vulkan::Adapter