MayaFlux 0.2.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 349 of file GraphicsSubsystem.cpp.

350{
351 for (auto& window : m_registered_windows) {
352 m_backend->render_window(window);
353 }
354}
std::vector< std::shared_ptr< Window > > m_registered_windows
std::unique_ptr< IGraphicsBackend > m_backend

References m_backend, and m_registered_windows.