MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_semaphore_handle()

vk::Semaphore MayaFlux::Portal::Graphics::ShaderFoundry::get_semaphore_handle ( SemaphoreID  semaphore_id)

Get Vulkan fence handle from FenceID.

Parameters
fence_idFence ID

Definition at line 1001 of file ShaderFoundry.cpp.

1002{
1003 auto it = m_semaphores.find(semaphore_id);
1004 if (it != m_semaphores.end()) {
1005 return it->second.semaphore;
1006 }
1007 return nullptr;
1008}
std::unordered_map< SemaphoreID, SemaphoreState > m_semaphores

References m_semaphores.