Disambiguate GraphNode::run and IOPlug::run
This commit is contained in:
parent
720303a217
commit
c1a1d12354
@ -56,7 +56,7 @@ public:
|
||||
XMLNode& get_state (void) const;
|
||||
int set_state (const XMLNode&, int version);
|
||||
|
||||
void run (samplepos_t, pframes_t);
|
||||
void connect_and_run (samplepos_t, pframes_t);
|
||||
int set_block_size (pframes_t);
|
||||
void set_public_latency (bool);
|
||||
bool ensure_io ();
|
||||
|
@ -560,7 +560,7 @@ Graph::process_one_route (Route* route)
|
||||
void
|
||||
Graph::process_one_ioplug (IOPlug* ioplug)
|
||||
{
|
||||
ioplug->run (_process_start_sample, _process_nframes);
|
||||
ioplug->connect_and_run (_process_start_sample, _process_nframes);
|
||||
}
|
||||
|
||||
bool
|
||||
|
@ -425,7 +425,7 @@ IOPlug::process ()
|
||||
}
|
||||
|
||||
void
|
||||
IOPlug::run (samplepos_t start, pframes_t n_samples)
|
||||
IOPlug::connect_and_run (samplepos_t start, pframes_t n_samples)
|
||||
{
|
||||
Temporal::TempoMap::update_thread_tempo_map ();
|
||||
assert (n_samples > 0);
|
||||
|
Loading…
Reference in New Issue
Block a user