mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-01-13 07:24:11 +00:00
43 lines
955 B
Plaintext
43 lines
955 B
Plaintext
|
vkCmdResetEvent(3)
|
||
|
==================
|
||
|
|
||
|
Name
|
||
|
----
|
||
|
vkCmdResetEvent - Reset an event object to non-signaled state.
|
||
|
|
||
|
C Specification
|
||
|
---------------
|
||
|
|
||
|
include::../protos/vkCmdResetEvent.txt[]
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
|
||
|
pname:commandBuffer::
|
||
|
The command buffer into which to insert the command.
|
||
|
|
||
|
pname:event::
|
||
|
The event object to reset to non-signaled state.
|
||
|
|
||
|
pname:stageMask::
|
||
|
Specifies when to reset the event (see elink:VkPipelineStageFlags for more
|
||
|
detail).
|
||
|
|
||
|
Description
|
||
|
-----------
|
||
|
|
||
|
fname:vkCmdResetEvent causes the event object specified in pname:event to be
|
||
|
returned to the non-signaled state when the pipeline stages specified by
|
||
|
pname:stageMask have completed executing prior commands.
|
||
|
|
||
|
For definitions of the pipeline stages, see elink:VkPipelineStageFlags.
|
||
|
|
||
|
include::../validity/protos/vkCmdResetEvent.txt[]
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|
||
|
flink:vkCmdSetEvent, flink:vkSetEvent, flink:vkResetEvent, elink:VkPipelineStageFlags
|
||
|
|
||
|
include::footer.txt[]
|