furnace/src/engine/platform/abstract.cpp
tildearrow 6efcfc2e8a prepare for possible major optimization
by just forwarding an output buffer to the dispatch and begin/length,
the number of calls may be reduced which improves performance.
2021-12-06 05:21:42 -05:00

15 lines
262 B
C++

#include "../dispatch.h"
void DivDispatch::acquire(short** buf, size_t start, size_t len) {
}
void DivDispatch::tick() {
}
int DivDispatch::dispatch(DivCommand c) {
return 1;
}
int DivDispatch::init(DivEngine* p, int channels, int sugRate) {
return 0;
}