mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-21 22:38:41 -06:00
uwu
This commit is contained in:
parent
5bac932108
commit
ee1f3ced47
|
@ -1,12 +1,12 @@
|
|||
use std::sync::Arc;
|
||||
|
||||
mod font;
|
||||
mod ftm;
|
||||
mod texman;
|
||||
|
||||
use font::FontManager;
|
||||
pub use font::FontHandle;
|
||||
use ftm::FontTextureManager;
|
||||
pub use ftm::{FontTextureInfo, GlyphCacheEntry};
|
||||
use texman::FontTextureManager;
|
||||
pub use texman::{FontTextureInfo, GlyphCacheEntry};
|
||||
|
||||
pub struct TextRenderer {
|
||||
fm: FontManager,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use std::sync::Arc;
|
||||
use fontdue::{Font, Metrics};
|
||||
use fontdue::Metrics;
|
||||
use glam::{IVec2, UVec2, uvec2, ivec2};
|
||||
use hashbrown::HashMap;
|
||||
use rect_packer::DensePacker;
|
||||
|
@ -8,8 +8,6 @@ use crate::IfModified;
|
|||
|
||||
use super::font::{FontHandle, FontManager};
|
||||
|
||||
|
||||
|
||||
#[derive(PartialEq, Eq, Hash)]
|
||||
struct GlyphCacheKey {
|
||||
font_index: usize,
|
Loading…
Reference in a new issue