[][src]Struct wgpu::Adapter

pub struct Adapter { /* fields omitted */ }

A handle to a physical graphics and/or compute device.

An Adapter can be used to open a connection to the corresponding device on the host system, yielding a Device object.

Implementations

impl Adapter[src]

pub fn enumerate(backends: BackendBit) -> Vec<Self>[src]

Retrieves all available Adapters that match the given backends.

pub async fn request<'_, '_>(
    options: &'_ RequestAdapterOptions<'_>,
    backends: BackendBit
) -> Option<Self>
[src]

Retrieves an Adapter which matches the given options.

Some options are "soft", so treated as non-mandatory. Others are "hard".

If no adapters are found that suffice all the "hard" options, None is returned.

pub async fn request_device<'_, '_>(
    &'_ self,
    desc: &'_ DeviceDescriptor
) -> (Device, Queue)
[src]

Requests a connection to a physical device, creating a logical device. Returns the device together with a queue that executes command buffers.

Panics

Panics if the extensions specified by desc are not supported by this adapter.

pub fn get_info(&self) -> AdapterInfo[src]

Trait Implementations

impl Debug for Adapter[src]

impl PartialEq<Adapter> for Adapter[src]

impl StructuralPartialEq for Adapter[src]

Auto Trait Implementations

impl RefUnwindSafe for Adapter

impl Send for Adapter

impl Sync for Adapter

impl Unpin for Adapter

impl UnwindSafe for Adapter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.