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; use std::sync::Arc;
mod font; mod font;
mod texman; mod ftm;
use font::FontManager; use font::FontManager;
pub use font::FontHandle; pub use font::FontHandle;
use texman::FontTextureManager; use ftm::FontTextureManager;
pub use texman::{FontTextureInfo, GlyphCacheEntry}; pub use ftm::{FontTextureInfo, GlyphCacheEntry};
pub struct TextRenderer { pub struct TextRenderer {
fm: FontManager, fm: FontManager,