[][src]Struct ash::EntryCustom

pub struct EntryCustom<L> { /* fields omitted */ }

Function loader

Methods

impl EntryCustom<Arc<DynamicLibrary>>[src]

pub fn new() -> Result<Entry, LoadingError>[src]

use ash::{vk, Entry, version::EntryV1_0};
let entry = Entry::new()?;
let app_info = vk::ApplicationInfo {
    api_version: vk_make_version!(1, 0, 0),
    ..Default::default()
};
let create_info = vk::InstanceCreateInfo {
    p_application_info: &app_info,
    ..Default::default()
};
let instance = unsafe { entry.create_instance(&create_info, None)? };

impl<L> EntryCustom<L>[src]

pub fn new_custom<Open, Load>(
    open: Open,
    load: Load
) -> Result<Self, LoadingError> where
    Open: FnOnce() -> Result<L, LoadingError>,
    Load: FnMut(&mut L, &CStr) -> *const c_void
[src]

pub fn try_enumerate_instance_version(&self) -> VkResult<Option<u32>>[src]

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/vkEnumerateInstanceVersion.html

let entry = Entry::new()?;
match entry.try_enumerate_instance_version()? {
    // Vulkan 1.1+
    Some(version) => {
        let major = vk_version_major!(version);
        let minor = vk_version_minor!(version);
        let patch = vk_version_patch!(version);
    },
    // Vulkan 1.0
    None => {},
}

Trait Implementations

impl<L> EntryV1_0 for EntryCustom<L>[src]

type Instance = Instance

unsafe fn create_instance(
    &self,
    create_info: &InstanceCreateInfo,
    allocation_callbacks: Option<&AllocationCallbacks>
) -> Result<Self::Instance, InstanceError>
[src]

fn enumerate_instance_layer_properties(&self) -> VkResult<Vec<LayerProperties>>[src]

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/vkEnumerateInstanceLayerProperties.html

fn enumerate_instance_extension_properties(
    &self
) -> VkResult<Vec<ExtensionProperties>>
[src]

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/vkEnumerateInstanceExtensionProperties.html

fn get_instance_proc_addr(
    &self,
    instance: Instance,
    p_name: *const c_char
) -> PFN_vkVoidFunction
[src]

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/vkGetInstanceProcAddr.html

impl<L: Clone> Clone for EntryCustom<L>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<L> Send for EntryCustom<L> where
    L: Send

impl<L> Sync for EntryCustom<L> where
    L: Sync

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.