Enum
VkOutOfBandQueueTypeNV
Type of out of band queue
The VkOutOfBandQueueTypeNV enum is defined as:
typedef enum VkOutOfBandQueueTypeNV {
VK_OUT_OF_BAND_QUEUE_TYPE_RENDER_NV = 0,
VK_OUT_OF_BAND_QUEUE_TYPE_PRESENT_NV = 1,
} VkOutOfBandQueueTypeNV;
pub struct OutOfBandQueueTypeNV(u32);
impl OutOfBandQueueTypeNV {
pub const RENDER: Self = 0;
pub const PRESENT: Self = 1;
}
The members of the VkOutOfBandQueueTypeNV are used to describe the queue type in VkOutOfBandQueueTypeInfoNV as described below:
VK_OUT_OF_BAND_QUEUE_TYPE_RENDER_NVspecifies that work will be submitted to this queue.VK_OUT_OF_BAND_QUEUE_TYPE_PRESENT_NVspecifies that this queue will be presented from.
Parent
VK_NV_low_latency2Type
Enum