pub type VkLayerDeviceLink = VkLayerDeviceLink_;Expand description
A list node that contains the next entity’s vkGetInstanceProcAddr and
vkGetDeviceProcAddr used by a layer. One possible payload of VkLayerDeviceCreateInfo
Aliased Type§
#[repr(C)]pub struct VkLayerDeviceLink {
pub pNext: *mut VkLayerDeviceLink_,
pub pfnNextGetInstanceProcAddr: unsafe extern "system" fn(Instance, *const i8) -> Option<unsafe extern "system" fn()>,
pub pfnNextGetDeviceProcAddr: unsafe extern "system" fn(Device, *const i8) -> Option<unsafe extern "system" fn()>,
}Fields§
§pNext: *mut VkLayerDeviceLink_§pfnNextGetInstanceProcAddr: unsafe extern "system" fn(Instance, *const i8) -> Option<unsafe extern "system" fn()>§pfnNextGetDeviceProcAddr: unsafe extern "system" fn(Device, *const i8) -> Option<unsafe extern "system" fn()>