Jussi Viiri
Jussi Viiri
In audio-buffer.h, data32 and data64 have types `float**` and `double**`, respectively. In clap-sys, these translate to `*const *const f32` and `*const *const f64`. They should be `*mut *mut` instead to...
Use of alloc crate is now behind a feature Still missing proper error handling, but I wanted to get an idea if this would be a potentially accepted PR before...
Tested on two systems. I get this crash inside baseview when closing the plugin window of my plugin using Vizia: ``` 17:39:21 [ERROR] thread 'unnamed' panicked at 'called `Result::unwrap()` on...
Miri is reporting undefined behavior in process_with_scratch(), presumably because of the unsafe pointer cast shenanigans above this line? ```test tests::complex_to_real ... error: Undefined Behavior: trying to retag from for SharedReadWrite...
#49 proposes making process_into_buffer() more generic by accepting a slice of mutable references instead of a slice of vectors. However, even this doesn't cater to all use cases. In my...
I'm working on a DAW plugin with slint and in that context, it's absolutely essential that input focus is only kept while actually entering text. Otherwise for example pressing the...
This assert is triggering in pending_errors, line 56: `assert_eq!(Some(Reverse(seqno)), seqno2);` This results from calling `poll_for_event()`. I'm a bit stumped as to how to debug what's going wrong, and my knowledge...