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

◆ add_input()

void MayaFlux::Nodes::Generator::Logic::add_input ( double  input,
size_t  index 
)
private

Definition at line 288 of file Logic.cpp.

289{
290 if (index >= m_input_buffer.size()) {
291 m_input_buffer.resize(index + 1, 0.0);
292 }
293 m_input_buffer[index] = input;
294}
std::vector< double > m_input_buffer
Definition Logic.hpp:575

References m_input_buffer.

Referenced by process_sample().

+ Here is the caller graph for this function: