Mirror the flags and re-exports from iced_baseview

This commit is contained in:
Robbert van der Helm
2022-03-12 22:24:01 +01:00
parent ff9e0f2ddf
commit cd5a4f01bf
4 changed files with 2268 additions and 18 deletions

View File

@@ -3,3 +3,14 @@
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).
By default this targets [wgpu](https://github.com/gfx-rs/wgpu). To use OpenGL
instead, include the crate with the following options. Note that some iced
features may not be available in the OpenGL backend.
```toml
nih_plug_iced = { git = "https://github.com/robbert-vdh/nih-plug.git", default_features = false, features = ["opengl"] }
```
Iced has many more optional features. Check the `Cargo.toml` file for more
information.