Struct vulkan_rs::VkAcquireNextImageInfoKHX [] [src]

#[repr(C)]
pub struct VkAcquireNextImageInfoKHX { pub sType: VkStructureType, pub pNext: *const c_void, pub swapchain: VkSwapchainKHR, pub timeout: u64, pub semaphore: VkSemaphore, pub fence: VkFence, pub deviceMask: u32, }

Structure specifying parameters of the acquire

Fields

the type of this structure

NULL or a pointer to an extension-specific structure

the swapchain from which an image is being acquired

VK_NULL_HANDLE or a semaphore to signal

VK_NULL_HANDLE or a fence to signal

a mask of physical devices for which the swapchain image will be ready to use when the semaphore or fence is signaled

Trait Implementations

impl Default for VkAcquireNextImageInfoKHX
[src]

Returns the "default value" for a type. Read more