rename texman.rs to ftm

This commit is contained in:
griffi-gh 2023-12-02 17:05:38 +01:00
parent dea9b7c584
commit 5823f05943
2 changed files with 3 additions and 3 deletions

View file

@ -1,12 +1,12 @@
use std::sync::Arc;
mod font;
mod texman;
mod ftm;
use font::FontManager;
pub use font::FontHandle;
use texman::FontTextureManager;
pub use texman::{FontTextureInfo, GlyphCacheEntry};
use ftm::FontTextureManager;
pub use ftm::{FontTextureInfo, GlyphCacheEntry};
pub struct TextRenderer {
fm: FontManager,