egui-baseview 0.1.0

A baseview backend for egui
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(all(feature = "opengl", not(feature = "wgpu")))]
mod opengl;
#[cfg(all(feature = "opengl", not(feature = "wgpu")))]
pub use opengl::renderer::{GraphicsConfig, Renderer};

#[cfg(feature = "wgpu")]
mod wgpu;
#[cfg(feature = "wgpu")]
pub use wgpu::renderer::{GraphicsConfig, Renderer};