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

◆ is_buffer_processed()

bool MayaFlux::Nodes::Node::is_buffer_processed ( ) const
inline

Checks if the buffer has been processed.

Returns
true if the buffer is marked as processed

Definition at line 568 of file Node.hpp.

569 {
570 return m_buffer_processed.load(std::memory_order_acquire);
571 }
std::atomic< bool > m_buffer_processed
Flag indicating whether the buffer has been processed This atomic flag is set when the buffer has bee...
Definition Node.hpp:685