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

◆ GraphicsRoutine() [2/3]

MayaFlux::Vruta::GraphicsRoutine::GraphicsRoutine ( const GraphicsRoutine other)

Copy constructor.

Parameters
otherGraphicsRoutine to copy

Creates a new GraphicsRoutine that shares ownership of the same underlying coroutine. This allows multiple schedulers or containers to reference the same task.

Definition at line 227 of file Routine.cpp.

228 : m_handle(other.m_handle)
229{
230}
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:654