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

◆ render_all_windows()

void MayaFlux::Core::GraphicsSubsystem::render_all_windows ( )

Render all registered windows.

Acquires swapchain images, records command buffers, submits to graphics queue, and presents.

Definition at line 339 of file GraphicsSubsystem.cpp.

340{
341 for (auto& window : m_registered_windows) {
342 m_backend->render_window(window);
343 }
344}
std::vector< std::shared_ptr< Window > > m_registered_windows
std::unique_ptr< IGraphicsBackend > m_backend

References m_backend, and m_registered_windows.