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

◆ unregister_window()

void MayaFlux::Core::BackendWindowHandler::unregister_window ( const std::shared_ptr< Window > &  window)

Definition at line 701 of file BackendWindowHandler.cpp.

702{
703 auto it = m_window_contexts.begin();
704 while (it != m_window_contexts.end()) {
705 if (it->window == window) {
706 it->cleanup(m_context);
708 "Unregistered window '{}'", it->window->get_create_info().title);
709 it = m_window_contexts.erase(it);
710 return;
711 }
712 ++it;
713 }
714}
#define MF_INFO(comp, ctx,...)
std::vector< WindowRenderContext > m_window_contexts
@ GraphicsSubsystem
Graphics subsystem operations (Vulkan, rendering pipeline)
@ Core
Core engine, backend, subsystems.

References MayaFlux::Journal::Core, MayaFlux::Journal::GraphicsSubsystem, and MF_INFO.