beamterm_renderer/lib.rs
1mod error;
2mod gl;
3mod mat4;
4
5pub(crate) mod js;
6
7pub use ::beamterm_data::{FontAtlasData, GlyphEffect};
8pub use beamterm_data::FontStyle;
9
10pub use crate::{
11 error::Error,
12 gl::{CellData, FontAtlas, Renderer, TerminalGrid},
13};
14
15#[cfg(test)]
16mod tests {
17 use beamterm_data::FontAtlasData;
18
19 #[test]
20 fn test_font_atlas_config_deserialization() {
21 let _ = FontAtlasData::default();
22 }
23}