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

Method getInputDeviceIds

src/midiloopback.cpp:33–39  ·  view source on GitHub ↗

Input methods

Source from the content-addressed store, hash-verified

31
32 // Input methods
33 std::vector<int> getInputDeviceIds() override {
34 std::vector<int> deviceIds;
35 for (size_t i = 0; i < NUM_DEVICES; i++) {
36 deviceIds.push_back(i);
37 }
38 return deviceIds;
39 }
40 int getDefaultInputDeviceId() override {
41 return 0;
42 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected