MayaFlux 0.2.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 561 of file Node.hpp.

562 {
563 return m_buffer_processed.load(std::memory_order_acquire);
564 }
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:625