diff options
Diffstat (limited to '')
-rw-r--r-- | wgpu/README.md | 4 | ||||
-rw-r--r-- | wgpu/src/lib.rs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/wgpu/README.md b/wgpu/README.md index 67cb59dd..4483733c 100644 --- a/wgpu/README.md +++ b/wgpu/README.md @@ -15,7 +15,9 @@ Currently, `iced_wgpu` supports the following primitives: - Images and SVG, loaded from memory or the file system. - Meshes of triangles, useful to draw geometry freely. - +<p align="center"> + <img alt="The native target" src="../docs/graphs/native.png" width="80%"> +</p> [documentation]: https://docs.rs/iced_wgpu [`iced_native`]: ../native diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index 5f44dd91..a4c2ac0e 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -1,6 +1,6 @@ //! A [`wgpu`] renderer for [`iced_native`]. //! -//!  +//!  //! //! For now, it is the default renderer of [Iced] in native platforms. //! |