Expand description
wgpu
supports most modern graphics backends: Vulkan, Metal, DX11, and
DX12 (OpenGL and WebGL are still WIP). Additionally, it will support the
incoming WebGPU API.
Currently, iced_wgpu
supports the following primitives:
- Text, which is rendered using
glyphon
. - Quads or rectangles, with rounded borders and a solid background color.
- Clip areas, useful to implement scrollables or hide overflowing content.
- Images and SVG, loaded from memory or the file system.
- Meshes of triangles, useful to draw geometry freely.
Re-exports§
pub use layer::Layer;
pub use primitive::Primitive;
pub use settings::Settings;
pub use geometry::Geometry;
geometry
pub use iced_graphics as graphics;
pub use iced_graphics::core;
pub use wgpu;
Modules§
- geometry
geometry
Build and draw geometry. - Draw custom primitives.
- Configure a renderer.
- Display rendering results on windows.