jatinchowdhury18
jatinchowdhury18
@giohappy I did not... but I spent 5-10 minutes on it just now. I've pushed my work to a branch in case you (or anyone else) wants to take a...
Another few minutes of hacking today... muting a track through the Reaper API works! https://github.com/free-audio/clap-juce-extensions/assets/13724188/2c3dcd4e-1913-40a9-88ce-9219c42fcc03
No problem! Those code snippets look equivalent to me. I was using [this example](https://github.com/justinfrankel/reaper-sdk/blob/main/sdk/example_m3u/import_m3u.cpp) from the Reaper SDK as a reference. You might be able to simply your version a...
Having some fun with track colours: #136 should be ready soon which will make `getExtension()` available and add this new example plugin.
Thanks for the questions, and for your original work on WDF++! The reason for `SampleTypeHelpers` is to enable correct initialization of member variables, particularly for SIMD types. For example, when...
Oh wow, this is very interesting! First off, I didn't know that `constexpr` could be used in this way. Also, it's great that the polymorphic implementation is getting approximately the...
Ah yeah, I'll definitely have to experiment with transitioning some more of my `inline` functions to `constexpr`. I definitely like your ideas to "avoid type declaration at the user level",...
> I've just a doubt ? You only use the S matrix (b = S.a) in the r-type implementation where Wener refere to solve Q by MNA. So, the current...
@MaxC2, very interesting, I'm not really familiar with `std::reference_wrapper`. Just to make sure I'm understanding, would this be used for the "templated" WDF implementation (WDF_T.h), or for the polymorphic version...
> Hum. Your current implementation is already fast, and changes can affect positively or negatively the overall performance. That's why I think it's better to work to a third implementation...