Enum
VkSemaphoreImportFlagBits
Bitmask specifying additional parameters of semaphore payload import
Bits which can be set in
- VkImportSemaphoreWin32HandleInfoKHR::
flags - VkImportSemaphoreFdInfoKHR::
flags - VkImportSemaphoreZirconHandleInfoFUCHSIA::
flags
specifying additional parameters of a semaphore import operation are:
typedef enum VkSemaphoreImportFlagBits {
VK_SEMAPHORE_IMPORT_TEMPORARY_BIT = 0x00000001,
// Provided by extensions
VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR = VK_SEMAPHORE_IMPORT_TEMPORARY_BIT,
} VkSemaphoreImportFlagBits;
pub struct SemaphoreImportFlagBits(u32);
impl SemaphoreImportFlagBits {
pub const TEMPORARY: Self = 0x00000001;
pub const TEMPORARY_KHR: Self = Self::TEMPORARY;
}
#define VkSemaphoreImportFlagBitsKHR VkSemaphoreImportFlagBits
const SemaphoreImportFlagBitsKHR: _ = vk::SemaphoreImportFlagBits;
These bits have the following meanings:
VK_SEMAPHORE_IMPORT_TEMPORARY_BITspecifies that the semaphore payload will be imported only temporarily, as described in Importing Semaphore Payloads, regardless of the permanence ofhandleType.
Parent
VK_VERSION_1_1Type
Enum