C Specification
The VkExternalComputeQueueCreateInfoNV
structure is defined as:
// Provided by VK_NV_external_compute_queue
typedef struct VkExternalComputeQueueCreateInfoNV {
VkStructureType sType;
const void* pNext;
VkQueue preferredQueue;
} VkExternalComputeQueueCreateInfoNV;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
preferredQueue
is aVkQueue
supporting graphics commands.
Description
When creating a VkExternalComputeQueueNV
, the preferredQueue
field is a strong scheduling hint as to which VkQueue
Vulkan graphics
workloads will be submitted to with the expectation that execution will
overlap with execution of work submitted by the external API.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.