13 lines
334 B
Rust
13 lines
334 B
Rust
![]() |
//! This crates provides bindings between [`egui`](https://github.com/emilk/egui) and [wgpu](https://crates.io/crates/wgpu).
|
||
|
|
||
|
#![allow(unsafe_code)]
|
||
|
|
||
|
pub use wgpu;
|
||
|
|
||
|
/// Low-level painting of [`egui`] on [`wgpu`].
|
||
|
pub mod renderer;
|
||
|
|
||
|
/// Module for painting [`egui`] with [`wgpu`] on [`winit`].
|
||
|
#[cfg(feature = "winit")]
|
||
|
pub mod winit;
|