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

62 lines
1.4 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/
VkFenceCreateInfo(3)
====================
Name
----
VkFenceCreateInfo - Structure specifying parameters of a newly created fence
C Specification
---------------
// refBegin VkFenceCreateInfo - Structure specifying parameters of a newly created fence
The sname:VkFenceCreateInfo structure is defined as:
include::../api/structs/VkFenceCreateInfo.txt[]
Members
-------
* pname:flags defines the initial state and behavior of the fence. Bits
which can: be set include:
+
--
// refBegin VkFenceCreateFlagBits - Bitmask specifying initial state and behavior of a fence
include::../api/enums/VkFenceCreateFlagBits.txt[]
--
+
If pname:flags contains ename:VK_FENCE_CREATE_SIGNALED_BIT then the fence
object is created in the signaled state. Otherwise it is created in the
unsignaled state.
Description
-----------
include::../validity/structs/VkFenceCreateInfo.txt[]
See Also
--------
elink:VkFenceCreateFlags, elink:VkStructureType, flink:vkCreateFence
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkFenceCreateInfo
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]