Vulkan-Docs/doc/specs/vulkan/man/vkGetDeviceQueue.txt

44 lines
1.0 KiB
Plaintext

vkGetDeviceQueue(3)
====================
Name
----
vkGetDeviceQueue - Get a queue handle from a device.
C Specification
---------------
include::../protos/vkGetDeviceQueue.txt[]
Parameters
----------
pname:device::
Handle to the device that is the owner of the queue.
pname:queueFamilyIndex::
The family index of the queue within the device.
pname:queueIndex::
The index of the queue within the queue family.
pname:pQueue::
A pointer to a variable that is to receive the resulting handle.
Description
-----------
fname:vkGetDeviceQueue retrieves a handle to a specified queue from the device specified in
pname:device. The queue is identified by its family index, specified in pname:queueFamilyIndex and its
index within the family, specified in pname:queueIndex. pname:pQueue is a pointer to a variable that
will receive the resulting handle.
include::../validity/protos/vkGetDeviceQueue.txt[]
See Also
--------
flink:vkGetPhysicalDeviceFeatures, flink:vkGetPhysicalDeviceQueueFamilyProperties
include::footer.txt[]