egui/egui/src/paint/mod.rs

21 lines
482 B
Rust
Raw Normal View History

2020-08-09 15:24:32 +00:00
//! Graphics module.
//!
//! Handles fonts, textures, color, geometry and tesselation.
pub mod color;
pub mod command;
pub mod font;
pub mod fonts;
pub mod stats;
2020-07-23 08:27:21 +00:00
pub mod tessellator;
mod texture_atlas;
pub use {
color::{Rgba, Srgba},
2020-09-01 21:54:21 +00:00
command::{PaintCmd, Stroke},
fonts::{FontDefinitions, FontFamily, Fonts, TextStyle},
stats::PaintStats,
tessellator::{PaintJob, PaintJobs, PaintOptions, TextureId, Triangles, Vertex, WHITE_UV},
texture_atlas::Texture,
};