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

◆ get_last_context()

template<size_t N = 0>
NodeContext & MayaFlux::Nodes::CompositeOpNode< N >::get_last_context ( )
inlineoverrideprotectedvirtual

Retrieves the last created context object.

Returns
Reference to the last NodeContext object

This method provides access to the most recent NodeContext object created by the node. This context contains information about the node's state at the time of the last output generation.

Implements MayaFlux::Nodes::Node.

Definition at line 533 of file NodeCombine.hpp.

534 {
536 return m_context_gpu;
537 return m_context;
538 }
CompositeOpContextGpu m_context_gpu
bool m_gpu_compatible
Flag indicating if the node supports GPU processing This flag is set by derived classes to indicate w...
Definition Node.hpp:386