ngfx::VKFence

Inherits from ngfx::Fence

Public Functions

Name
void create(VkDevice device, VkFenceCreateFlags flags =0)
virtual ~VKFence()
virtual void wait()
virtual void reset()

Public Attributes

Name
VkFence v
VkFenceCreateInfo createInfo

Additional inherited members

Public Functions inherited from ngfx::Fence

Name
virtual ~Fence()

Public Functions Documentation

function create

void create(
    VkDevice device,
    VkFenceCreateFlags flags =0
)

function ~VKFence

virtual ~VKFence()

function wait

virtual void wait()

Reimplements: ngfx::Fence::wait

Wait for the fence to be signaled by the GPU

function reset

virtual void reset()

Reimplements: ngfx::Fence::reset

Reset the fence

Public Attributes Documentation

variable v

VkFence v = VK_NULL_HANDLE;

variable createInfo

VkFenceCreateInfo createInfo;

Updated on 3 April 2021 at 20:21:51 PDT