MayaFlux 0.2.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 231 of file Routine.cpp.

232 : m_handle(other.m_handle)
233{
234}
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:654