Oliver Rockstedt

Results 59 comments of Oliver Rockstedt

You can have a look at my project here: https://github.com/sourcebox/sysex-drop My experience with Windows is very little, I'm mostly on Linux and macOS and only fire it up in rare...

I've seen that virtual ports are handled differently. My current strategy is to remove the client part in case that it's identical to the start of the port name. I'm...

My app will be cross-platform on desktop, e.g. macOS/Windows/Linux. With "iteration" I mean each pass of the scan, currently done at an 1 second interval. On macOS, there strangely seems...

Ok, here is some demo code that loops about 6 times and then raises the error "MIDI support could not be initialized". Platform is macOS 10.13 ```rust use midir::MidiOutput; fn...

> However, you don't need to call `MidiOutput::new` in every single iteration. You can create an `Option` and then only move your `MidiOutput` out of it and create a new...

I changed the demo code to use coremidi directly and filed an issue at its repository.

Some interesting stuff I discovered: When I replace `Ok(output) => {}` with `Ok(_) => {}` in the match statement of the demo code, the loop runs much more often before...

This seems to be related to #86

I just turned off vsync for test, but this doubles the CPU load for me. Not really on option therefore.

@Ar37-rs I do some frame limiting on my own now, but even with vsync disabled I get the error on my old notebook which is only supporting OpenGL ES2. But...