Click or drag to resize
Ab4d.SharpEngine logo

VulkanDeviceWaitForFence Method

WaitForFence method first checks the status of the fence. If the status is not signaled, then WaitForFence is called.

Namespace: Ab4d.SharpEngine.Vulkan
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public bool WaitForFence(
	Fence fence,
	ulong timeout = 3000000000
)

Parameters

fence  Fence
Fence to check and wait
timeout  UInt64  (Optional)
timeout in nanoseconds (3 seconds by default; when ulong.MaxValue is used, then no timeout is used)

Return Value

Boolean
true if WaitForFence was called; false if the fence was already signaled.
See Also