-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does element picker work? #46
Comments
it relies on lv2 instance-access, something I guess it's banned on the DPF , last time i've checked, eons ago |
Actually, in DPF, I can use instance-access with In your official LV2 implementation ( |
Seems that this line relates to that feature: Line 823 in 86e159c
In my implementation, I directly call it in void drumkv1_dpf::selectSample (int key)
{
fprintf(stderr, ">> Trigger selectSample, key = %d\n", key);
drumkv1::setCurrentElementEx(key);
} However, it still does not work as what I wish. |
Hi, Rui!
I'm porting DrumkV1 to DPF, DISTRHO Plugin Framework. And I encountered a problem:
In official LV2 version, when I pick an element from the element list (the listbox on the left of sample view), sample view and other controllers changes corresponding to the element's params.
But in my implementation, things are not what I wish. No matter how I touch the element list, UI won't change.
So I wonder how does the element list work. Does it relate to features of LV2?
My repo: https://github.com/anclark/drumkv1/tree/dpf-implementation
The text was updated successfully, but these errors were encountered: