MCPcopy Create free account
hub / github.com/VCVRack/Rack / getBlockSizes

Method getBlockSizes

src/rtaudio.cpp:242–249  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240 }
241
242 std::set<int> getBlockSizes() override {
243 std::set<int> blockSizes;
244 // 32 to 4096
245 for (int i = 5; i <= 12; i++) {
246 blockSizes.insert(1 << i);
247 }
248 return blockSizes;
249 }
250 int getBlockSize() override {
251 return blockSize;
252 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected