Files
Cagire/plugins/egui-baseview/src/renderer.rs

7 lines
181 B
Rust

//! GPU renderer backend selection (currently OpenGL only).
#[cfg(feature = "opengl")]
mod opengl;
#[cfg(feature = "opengl")]
pub use opengl::renderer::{GraphicsConfig, Renderer};