p0nce
p0nce
In `IWindowListener`, the following functions are guaranteed to be called non-concurrently: - `onDraw` - `onResized` - `recomputeDirtyAreas` - `getDirtyRectangle` `getDirtyRectangle` semantics is that once you have pulled the dirtyRectangle, you...
> only now are cross platform LV2 hosts slowly coming forward. Of course there where already Ardour, Harrison Mixbus, Carla, and Mixxx, but soon you can add Element and Reaper...
It's some additional callbacks for supporting micro-tuning in synths https://github.com/ODDSound/MTS-ESP Need to implement the callbacks in the client, along with the implementation of said callbacks.
``` // Courtesy of Urs Heckmann (u-he) template INLINE(T) uhTanhPro( const T &x ) { const T C7 = T( 0.2344393379e-3 ); const T C5 = T( 0.8205501647e-2 ); const...
I've been sitting behind a relatively newbie friend tasked with installing a plugin with a Dplug installer. Some aspects of installing that were hard were: - [ ] Ugly green...
Saving a user presets returns to default in AU + macOS + DP + Panagement: https://user-images.githubusercontent.com/1067485/142517730-feef92f8-655b-4687-8ae4-a099a8d52cf8.mp4 Also: can't save user presets in DP without a `/Library/Audio/Presets/$VENDORNAME` directory. This is a...
> I downloaded the free version of the Graillon Plugin on Mac and it only works once, then crashes the second time I attempt to use the plugin on any...
Currently in VST2 (and possibly AU), changing parameters and switching between presets modify presets in memory. Doesn't affect user sessions. Because of Studio One calling setProgram after setting a bank...
- should verify than the .min and .max of the enum used match the parameter - currently you can make a mistake in the number of labels, or a mistake...
``` on Windows => some leaks reported by Dr Memory and Inspector On Mac => we leak some resources (shared lib handles, cocoa classes even) mainly because pragma(crt_destructor) didn't exist...