Trait wgpu::core::hal_api::HalApi

source ·
pub trait HalApi: Api + 'static + WasmNotSendSync {
    const VARIANT: Backend;

    // Required methods
    fn create_instance_from_hal(
        name: &str,
        hal_instance: Self::Instance
    ) -> Instance;
    fn instance_as_hal(instance: &Instance) -> Option<&Self::Instance>;
    fn hub(global: &Global) -> &Hub<Self>;
    fn surface_as_hal(surface: &Surface) -> Option<&Self::Surface>;
}
Available on wgpu_core only.

Required Associated Constants§

Required Methods§

source

fn create_instance_from_hal( name: &str, hal_instance: Self::Instance ) -> Instance

source

fn instance_as_hal(instance: &Instance) -> Option<&Self::Instance>

source

fn hub(global: &Global) -> &Hub<Self>

source

fn surface_as_hal(surface: &Surface) -> Option<&Self::Surface>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl HalApi for wgpu::hal::api::Empty

source§

const VARIANT: Backend = Backend::Empty

source§

impl HalApi for wgpu::hal::api::Gles

Available on gles only.
source§

const VARIANT: Backend = Backend::Gl

source§

impl HalApi for wgpu::hal::api::Vulkan

Available on vulkan only.
source§

const VARIANT: Backend = Backend::Vulkan