Boscop

Results 547 comments of Boscop

The macro is clever but I wouldn't use it because it makes the code harder to read (also for others). I'd prefer to have this built-in.. @Centril It should still...

Any update on this? :)

Hey @overdrivenpotato, I'm also very interested in a VST host in Rust! Which window library are you using? Are you using https://github.com/RustAudio/dsp-chain for the processing?

@overdrivenpotato: I'm interested in this as well. I haven't done a host yet but I've worked on the plugin editor GUI. It would be useful if you can put your...

Usually the host runs the UI in a separate thread from the audio anyway, because ASIO needs the lowest latency (some say, don't even allocate in the ASIO thread, but...

Maybe integrate servo, to shift the rendering to the GPU ;) Is there something like CEF / Electron for servo? There should be! **EDIT:** [oh look!](https://github.com/servo/servo/tree/master/ports/cef) They are implementing the...

Thanks, everything is working fine now. (Yeah, the problem was that I had dropped the session.) And `count_tracks` indeed works when Reaper is not paused. (Weird that `GetNumTracks` doesn't.) Btw,...

Thanks, everything is working fine now. Btw, why does `ControlSurface` derive from `Debug`? It forces me to exclude almost every field: ```rust #[derive(Derivative)] #[derivative(Debug)] pub struct MyControlSurface { #[derivative(Debug =...

Ah, makes sense. Yeah, I realized I didn't have to exclude so many fields..

What errors? It works for me with msvc 2015.