mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
This removes the need to pass a lot of these `ParamSetter`s and `GuiContext`s around. We also don't need explicit events to reset a parameter anymore since you can get this information from the parameter itself.
NIH-plug: iced support
This provides an adapter to create iced based GUIs with NIH-plug through iced_baseview.
By default this targets OpenGL as wgpu causes segfaults on a number of configurations. To use wgpu instead, include the crate with the following options:
nih_plug_iced = { git = "https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["wgpu"] }
Iced has many more optional features. Check the Cargo.toml file for more
information.