beamterm_renderer/lib.rs
1mod error;
2mod gl;
3mod mat4;
4mod terminal;
5
6pub(crate) mod js;
7
8#[cfg(feature = "js-api")]
9pub mod wasm;
10
11pub mod mouse;
12
13pub use ::beamterm_data::{FontAtlasData, GlyphEffect};
14pub use beamterm_data::FontStyle;
15pub use terminal::*;
16
17pub use crate::{error::Error, gl::*};
18
19#[cfg(test)]
20mod tests {
21 use beamterm_data::FontAtlasData;
22
23 #[test]
24 fn test_font_atlas_config_deserialization() {
25 let _ = FontAtlasData::default();
26 }
27}