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

◆ initialize_state()

bool MayaFlux::Vruta::GraphicsRoutine::initialize_state ( uint64_t  current_context = 0U)
overridevirtual

Initializes the coroutine's state for execution.

Parameters
current_sampleCurrent sample position in the timeline
Returns
True if initialization succeeded, false otherwise

Prepares the coroutine for execution by setting its initial sample position and other state. This should be called before the first attempt to resume the coroutine.

Implements MayaFlux::Vruta::Routine.

Definition at line 243 of file Routine.cpp.

244{
245 if (!is_active() || !m_handle.address()) {
246 return false;
247 }
248
249 m_handle.promise().next_frame = current_frame;
250 m_handle.resume();
251 return true;
252}
bool is_active() const override
Checks if the coroutine is still active.
Definition Routine.cpp:238
std::coroutine_handle< promise_type > m_handle
Handle to the underlying coroutine.
Definition Routine.hpp:623

References is_active(), and m_handle.

Referenced by try_resume_with_context().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: