Trait wgpu_hal::Adapter[][src]

pub trait Adapter<A: Api>: Send + Sync {
    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>; }

Required methods

Return the set of supported capabilities for a texture format.

Returns the capabilities of working with a specified surface.

None means presentation is not supported for it.

Implementors