Geraint

Results 16 issues of Geraint

I'm looking to build CLAP plugins as WASM bundles, where all the CLAP API calls are exported from the WASM module. This looks (so far) like it would just work,...

This works for MacOS CLAP/VST3. It *should* print out a warning for all other platforms, saying this option is not supported.

This optional function lets you return a {tag: N, value: replacement} object for types which can be encoded with tags. I needed this for encoding typed arrays (RFC 8949), not...

This draft lets CLAP plugins straightforwardly use a web-page for their UI. Messages are exchanged in both directions as opaque blocks of bytes on the main thread. The webpage receives...

On Mac, CMake's Makefile generator seems to build everything with dual-architecture. However, the Xcode generator seems to build the architectures individually and then stick them together afterwards. Since `PROJECT_SYSTEM_PROCESSOR` will...

If a `Voice` fails to start, it's left as `State::cleanMeUp`. However, the [main render loop](https://github.com/sfztools/sfizz/blob/f5c6e29f23b8057867c08e88f5f6ac6738baa30b/src/sfizz/Synth.cpp#L1164-L1166) assumes voices are either `State::idle` or `State::playing`, and only checks `voice.toBeCleanedUp()` at the end. There...