Structures
VkExternalSemaphoreProperties
Structure describing supported external semaphore handle features
The VkExternalSemaphoreProperties structure is defined as:
typedef struct VkExternalSemaphoreProperties {
VkStructureType sType;
void* pNext;
VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
} VkExternalSemaphoreProperties;
pub struct ExternalSemaphoreProperties {
s_type: vk::StructureType,
p_next: *mut c_void,
export_from_imported_handle_types: vk::ExternalSemaphoreHandleTypeFlags,
compatible_handle_types: vk::ExternalSemaphoreHandleTypeFlags,
external_semaphore_features: vk::ExternalSemaphoreFeatureFlags,
}
typedef VkExternalSemaphoreProperties VkExternalSemaphorePropertiesKHR;
type ExternalSemaphorePropertiesKHR = vk::ExternalSemaphoreProperties;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.exportFromImportedHandleTypesis a bitmask of VkExternalSemaphoreHandleTypeFlagBits specifying which types of imported handlehandleTypecan be exported from.compatibleHandleTypesis a bitmask of VkExternalSemaphoreHandleTypeFlagBits specifying handle types which can be specified at the same time ashandleTypewhen creating a semaphore.externalSemaphoreFeaturesis a bitmask of VkExternalSemaphoreFeatureFlagBits describing the features ofhandleType.
If handleType is not supported by the implementation, then
VkExternalSemaphoreProperties::externalSemaphoreFeatures will be
zero.
Valid Usage (Implicit)
VUID-VkExternalSemaphoreProperties-sType-sType
sType must be VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES
VUID-VkExternalSemaphoreProperties-pNext-pNext
pNext must be NULL
Parent
VK_VERSION_1_1Type
Structures