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

◆ resume()

void MayaFlux::Core::GraphicsSubsystem::resume ( )
overridevirtual

Resume the subsystem's processing/event loops.

Implements MayaFlux::Core::ISubsystem.

Definition at line 244 of file GraphicsSubsystem.cpp.

245{
246 if (!m_running.load(std::memory_order_acquire)) {
248 "Cannot resume - graphics thread not running");
249 return;
250 }
251
252 m_paused.store(false, std::memory_order_release);
253
255 "Graphics processing resumed");
256}
#define MF_INFO(comp, ctx,...)
#define MF_WARN(comp, ctx,...)
@ GraphicsSubsystem
Graphics subsystem operations (Vulkan, rendering pipeline)
@ Core
Core engine, backend, subsystems.

References MayaFlux::Journal::Core, MayaFlux::Journal::GraphicsSubsystem, m_paused, m_running, MF_INFO, and MF_WARN.