egui/egui/src/paint/mod.rs

23 lines
537 B
Rust
Raw Normal View History

//! 2D graphics/rendering. Fonts, textures, color, geometry, tesselation etc.
2020-08-09 15:24:32 +00:00
pub mod color;
pub mod command;
pub mod font;
pub mod fonts;
mod galley;
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},
galley::*,
stats::PaintStats,
tessellator::{
PaintJob, PaintJobs, TesselationOptions, TextureId, Triangles, Vertex, WHITE_UV,
},
texture_atlas::{Texture, TextureAtlas},
};