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

39 lines
882 B
Plaintext

vkSetEvent(3)
==============
Name
----
vkSetEvent - Set an event to signaled state.
C Specification
---------------
include::../protos/vkSetEvent.txt[]
Parameters
----------
pname:device::
Logical device which owns the event.
pname:event::
Handle to the event object to signal.
Description
-----------
fname:vkSetEvent sets the event object specified by pname:event to signaled state.
pname:event must be an event object owned by pname:device. Subsequent calls to
flink:vkGetEventStatus on pname:event will return the new status. If any command
buffers are currently executing on any queue on pname:device and are waiting on
the event specified by pname:event, then they will be unblocked.
include::../validity/protos/vkSetEvent.txt[]
See Also
--------
flink:vkResetEvent, flink:vkGetEventStatus, flink:vkCmdSetEvent, flink:vkCmdWaitEvents
include::footer.txt[]