lucianoiam

Results 7 issues of lucianoiam

It looks like if a plugin requests H pixels for height, Carla provides H-h where h is the Windoze title bar height. This screenshot comes from Win7, haven't tried on...

Getting this on 2019 Intel Mac: ``` Error: SIMD compatibility check failed, try adding --cpu= to specify a cpu or adding --disable-simd to disable SIMD ``` Appending `--cpu=skylake` fixes it....

Since this plugin format needs some work on Mac and Windows I started by testing it on Linux which is probably the reference platform; VST3 Parameters example works great on...

Currently we have `Window::openFileBrowser()` which is part of DGL. Does it make sense to take it out of DGL and make it available to custom UIs like `ExternalWindow`? Not sure...

[WavPack](https://github.com/dbry/WavPack) is a lossless audio codec

Given ```C++ void ExamplePluginStates::activate() override { d_stderr("activate"); updateStateValue("top-left", "hello"); } ExampleUIStates::ExampleUIStates() { ... d_stderr("open ui"); } void ExampleUIStates::stateChanged(const char* key, const char* value) override { ... d_stderr("state changed %s =...

Isn't there a risk of writing to an invalid location if the UI was closed exactly at this point? and hence the shared memory referenced by FloatFifoControl, deleted. https://github.com/DISTRHO/OneKnob-Series/blob/26ca5989774c6b255d5ae211558c0b76a1628345/plugins/common/OneKnobPlugin.hpp#L139