Struct wgpu_hal::vulkan::Instance

source ·
pub struct Instance { /* private fields */ }

Implementations§

source§

impl Instance

source§

impl Instance

source

pub fn shared_instance(&self) -> &InstanceShared

source

pub fn required_extensions( entry: &Entry, _driver_api_version: u32, flags: InstanceFlags ) -> Result<Vec<&'static CStr>, InstanceError>

source

pub unsafe fn from_raw( entry: Entry, raw_instance: Instance, driver_api_version: u32, android_sdk_version: u32, debug_utils_user_data: Option<DebugUtilsMessengerUserData>, extensions: Vec<&'static CStr>, flags: InstanceFlags, has_nv_optimus: bool, drop_guard: Option<DropGuard> ) -> Result<Self, InstanceError>

Safety
  • raw_instance must be created from entry
  • raw_instance must be created respecting driver_api_version, extensions and flags
  • extensions must be a superset of required_extensions() and must be created from the same entry, driver_api_version and flags.
  • android_sdk_version is ignored and can be 0 for all platforms besides Android

If debug_utils_user_data is Some, then the validation layer is available, so create a vk::DebugUtilsMessengerEXT.

Trait Implementations§

source§

impl Instance<Api> for Instance

source§

unsafe fn init(desc: &InstanceDescriptor<'_>) -> Result<Self, InstanceError>

source§

unsafe fn create_surface( &self, display_handle: RawDisplayHandle, window_handle: RawWindowHandle ) -> Result<Surface, InstanceError>

source§

unsafe fn destroy_surface(&self, surface: Surface)

source§

unsafe fn enumerate_adapters(&self) -> Vec<ExposedAdapter<Api>>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast<T> for T

source§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSync for T
where T: Sync,