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

◆ get_pipeline_window()

std::shared_ptr< Core::Window > MayaFlux::Buffers::VKBuffer::get_pipeline_window ( RenderPipelineID  id) const
inline

Get the window associated with this buffer.

Returns
Target window, or nullptr if not set

Definition at line 326 of file VKBuffer.hpp.

327 {
328 auto it = m_window_pipelines.find(id);
329 if (it != m_window_pipelines.end()) {
330 return it->second;
331 }
332 return nullptr;
333 }
std::unordered_map< RenderPipelineID, std::shared_ptr< Core::Window > > m_window_pipelines
Definition VKBuffer.hpp:449