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

58 lines
1.3 KiB
Plaintext

// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
// Creative Commons Attribution 4.0 International License; see
// http://creativecommons.org/licenses/by/4.0/
vkGetDeviceQueue(3)
===================
Name
----
vkGetDeviceQueue - Get a queue handle from a device.
C Specification
---------------
// refBegin vkGetDeviceQueue Get a queue handle from a device.
To retrieve a handle to a VkQueue object, call:
include::../api/protos/vkGetDeviceQueue.txt[]
Parameters
----------
* pname:device is the logical device that owns the queue.
* pname:queueFamilyIndex is the index of the queue family to which the
queue belongs.
* pname:queueIndex is the index within this queue family of the queue to
retrieve.
* pname:pQueue is a pointer to a sname:VkQueue object that will be filled
with the handle for the requested queue.
Description
-----------
include::../validity/protos/vkGetDeviceQueue.txt[]
See Also
--------
slink:VkDevice, slink:VkQueue
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#vkGetDeviceQueue
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]