1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-24 22:01:47 +03:00
This commit is contained in:
Wez Furlong 2023-04-16 06:57:28 -07:00
parent 6ec11393d5
commit 8435a12e12
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387

View File

@ -1,4 +1,3 @@
use image::{ColorType, DynamicImage};
use super::utilsprites::RenderMetrics;
use crate::customglyph::*;
use crate::renderstate::RenderContext;
@ -10,7 +9,10 @@ use anyhow::Context;
use config::{AllowSquareGlyphOverflow, TextStyle};
use euclid::num::Zero;
use image::io::Limits;
use image::{AnimationDecoder, Frame, Frames, ImageDecoder, ImageFormat, ImageResult};
use image::{
AnimationDecoder, ColorType, DynamicImage, Frame, Frames, ImageDecoder, ImageFormat,
ImageResult,
};
use lfucache::LfuCache;
use once_cell::sync::Lazy;
use ordered_float::NotNan;