55 lines
1.1 KiB
Plaintext
55 lines
1.1 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/
|
|
|
|
vkQueueWaitIdle(3)
|
|
==================
|
|
|
|
Name
|
|
----
|
|
vkQueueWaitIdle - Wait for a queue to become idle.
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin vkQueueWaitIdle Wait for a queue to become idle.
|
|
|
|
To wait on the host for the completion of outstanding queue operations for a given queue, call:
|
|
|
|
include::../api/protos/vkQueueWaitIdle.txt[]
|
|
|
|
|
|
Parameters
|
|
----------
|
|
|
|
* pname:queue is the queue on which to wait.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
fname:vkQueueWaitIdle is equivalent to submitting a fence to a queue and
|
|
waiting with an infinite timeout for that fence to signal.
|
|
|
|
include::../validity/protos/vkQueueWaitIdle.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
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#vkQueueWaitIdle
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|