2022-03-13 08:10:14 +11:00
|
|
|
# NIH-plug: iced support
|
|
|
|
|
|
|
|
This provides an adapter to create [iced](https://github.com/iced-rs/iced) based
|
|
|
|
GUIs with NIH-plug through
|
|
|
|
[iced_baseview](https://github.com/BillyDM/iced_baseview).
|
2022-03-13 08:24:01 +11:00
|
|
|
|
2022-03-17 02:07:08 +11:00
|
|
|
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:
|
2022-03-13 08:24:01 +11:00
|
|
|
|
|
|
|
```toml
|
2022-03-17 02:07:08 +11:00
|
|
|
nih_plug_iced = { git = "https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["wgpu"] }
|
2022-03-13 08:24:01 +11:00
|
|
|
```
|
|
|
|
|
|
|
|
Iced has many more optional features. Check the `Cargo.toml` file for more
|
|
|
|
information.
|