Flutter Impeller
impeller::KHRFrameSynchronizerVK Struct Reference

Public Member Functions

 KHRFrameSynchronizerVK (const vk::Device &device)
 
 ~KHRFrameSynchronizerVK ()=default
 
bool WaitForFence (const vk::Device &device)
 

Public Attributes

vk::UniqueFence acquire
 
vk::UniqueSemaphore render_ready
 
vk::UniqueSemaphore present_ready
 
std::shared_ptr< CommandBufferfinal_cmd_buffer
 
bool is_valid = false
 

Detailed Description

Definition at line 22 of file khr_swapchain_impl_vk.cc.

Constructor & Destructor Documentation

◆ KHRFrameSynchronizerVK()

impeller::KHRFrameSynchronizerVK::KHRFrameSynchronizerVK ( const vk::Device &  device)
inlineexplicit

Definition at line 29 of file khr_swapchain_impl_vk.cc.

29  {
30  auto acquire_res = device.createFenceUnique(
31  vk::FenceCreateInfo{vk::FenceCreateFlagBits::eSignaled});
32  auto render_res = device.createSemaphoreUnique({});
33  auto present_res = device.createSemaphoreUnique({});
34  if (acquire_res.result != vk::Result::eSuccess ||
35  render_res.result != vk::Result::eSuccess ||
36  present_res.result != vk::Result::eSuccess) {
37  VALIDATION_LOG << "Could not create synchronizer.";
38  return;
39  }
40  acquire = std::move(acquire_res.value);
41  render_ready = std::move(render_res.value);
42  present_ready = std::move(present_res.value);
43  is_valid = true;
44  }

References acquire, is_valid, present_ready, render_ready, and VALIDATION_LOG.

◆ ~KHRFrameSynchronizerVK()

impeller::KHRFrameSynchronizerVK::~KHRFrameSynchronizerVK ( )
default

Member Function Documentation

◆ WaitForFence()

bool impeller::KHRFrameSynchronizerVK::WaitForFence ( const vk::Device &  device)
inline

Definition at line 48 of file khr_swapchain_impl_vk.cc.

48  {
49  if (auto result = device.waitForFences(
50  *acquire, // fence
51  true, // wait all
52  std::numeric_limits<uint64_t>::max() // timeout (ns)
53  );
54  result != vk::Result::eSuccess) {
55  VALIDATION_LOG << "Fence wait failed: " << vk::to_string(result);
56  return false;
57  }
58  if (auto result = device.resetFences(*acquire);
59  result != vk::Result::eSuccess) {
60  VALIDATION_LOG << "Could not reset fence: " << vk::to_string(result);
61  return false;
62  }
63  return true;
64  }

References acquire, and VALIDATION_LOG.

Member Data Documentation

◆ acquire

vk::UniqueFence impeller::KHRFrameSynchronizerVK::acquire

Definition at line 23 of file khr_swapchain_impl_vk.cc.

Referenced by KHRFrameSynchronizerVK(), and WaitForFence().

◆ final_cmd_buffer

std::shared_ptr<CommandBuffer> impeller::KHRFrameSynchronizerVK::final_cmd_buffer

Definition at line 26 of file khr_swapchain_impl_vk.cc.

◆ is_valid

bool impeller::KHRFrameSynchronizerVK::is_valid = false

Definition at line 27 of file khr_swapchain_impl_vk.cc.

Referenced by KHRFrameSynchronizerVK().

◆ present_ready

vk::UniqueSemaphore impeller::KHRFrameSynchronizerVK::present_ready

Definition at line 25 of file khr_swapchain_impl_vk.cc.

Referenced by KHRFrameSynchronizerVK().

◆ render_ready

vk::UniqueSemaphore impeller::KHRFrameSynchronizerVK::render_ready

Definition at line 24 of file khr_swapchain_impl_vk.cc.

Referenced by KHRFrameSynchronizerVK().


The documentation for this struct was generated from the following file:
impeller::KHRFrameSynchronizerVK::acquire
vk::UniqueFence acquire
Definition: khr_swapchain_impl_vk.cc:23
impeller::KHRFrameSynchronizerVK::render_ready
vk::UniqueSemaphore render_ready
Definition: khr_swapchain_impl_vk.cc:24
VALIDATION_LOG
#define VALIDATION_LOG
Definition: validation.h:91
impeller::KHRFrameSynchronizerVK::present_ready
vk::UniqueSemaphore present_ready
Definition: khr_swapchain_impl_vk.cc:25
impeller::KHRFrameSynchronizerVK::is_valid
bool is_valid
Definition: khr_swapchain_impl_vk.cc:27