chriscoomber
chriscoomber
When cross-compiling from windows to Android, I found I needed to add environment variables for the CC and AR (in addition to the config in `.cargo/config`) in order to get...
Hi there. I'm learning KMM and I have written a test project Kotlin library. I wanted to make a quick website which showed the documentation and also had a window...
1a) So I understand that I can do: ``` let lazy: Lazy = Lazy::new(|| String::from("hello")); ``` Because: - When you don't specify the 2nd generic it assumes `fn() -> String`...
Hi there, I'm trying to use TinySoundFont to render sound to Android using https://github.com/google/oboe/. I'm having trouble marrying these two bits of documentation: - From Oboe's full guide, I should...
I've been looking into volume curves recently, because my implementation of a MIDI player using TSF didn't sound quite right. In the end I was using a linear curve to...
Android version(s): N/A (didn't get that far) Android device(s): N/A (as above) Oboe version: 1.5.0 App name used for testing: A closed-source app, sorry **Short description** This is a build...
I'm trying to write code which plays MIDI notes from file. I want to be able to intercept packets sent by the sequencer, and then process them, before sending them...
The code it uses to iterate over the loops is here: ``` for (int loop = 0; loop < getLoopCount() + 1; loop = (getLoopCount() == LOOP_CONTINUOUSLY ? loop :...
# Context It is perfectly valid for a MidiFile to contain two noteOns followed by two noteOffs: ``` tick : event 0 : NoteOn channel 0 key 66 vel 100...
## Summary I want to boot a VM by using a boot volume, which is created by providing the openstack **name** for an image (**not the openstack id**). ## Symptoms...