Function Prototype
vkQueueNotifyOutOfBandNV
Notify out of band queue
To mark a queue as out of band, so that all vkQueueSubmit calls on
the queue are ignored for latency evaluation, call:
void vkQueueNotifyOutOfBandNV(
VkQueue queue,
const VkOutOfBandQueueTypeInfoNV* pQueueTypeInfo);
pub fn queue_notify_out_of_band_nv(
queue: vk::Queue,
p_queue_type_info: *const vk::OutOfBandQueueTypeInfoNV,
);
queueis the VkQueue to be marked as out of band.pQueueTypeInfois a pointer to a VkOutOfBandQueueTypeInfoNV structure specifying the queue type.
Valid Usage (Implicit)
VUID-vkQueueNotifyOutOfBandNV-queue-parameter
queue must be a valid VkQueue handle
VUID-vkQueueNotifyOutOfBandNV-pQueueTypeInfo-parameter
pQueueTypeInfo must be a valid pointer to a valid VkOutOfBandQueueTypeInfoNV structure
Parent
VK_NV_low_latency2Type
Function Prototype