Structures
VkOutOfBandQueueTypeInfoNV
Structure used to describe the queue that is being marked as Out of Band
The VkOutOfBandQueueTypeInfoNV structure is defined as:
typedef struct VkOutOfBandQueueTypeInfoNV {
VkStructureType sType;
const void* pNext;
VkOutOfBandQueueTypeNV queueType;
} VkOutOfBandQueueTypeInfoNV;
pub struct OutOfBandQueueTypeInfoNV {
s_type: vk::StructureType,
p_next: *const c_void,
queue_type: vk::OutOfBandQueueTypeNV,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.queueTypedescribes the usage of the queue to be marked as out of band.
Valid Usage (Implicit)
VUID-VkOutOfBandQueueTypeInfoNV-sType-sType
sType must be VK_STRUCTURE_TYPE_OUT_OF_BAND_QUEUE_TYPE_INFO_NV
VUID-VkOutOfBandQueueTypeInfoNV-queueType-parameter
queueType must be a valid VkOutOfBandQueueTypeNV value
Parent
VK_NV_low_latency2Type
Structures