pub struct FontImage {
pub size: [usize; 2],
pub pixels: Vec<f32>,
}
Expand description
A single-channel image designed for the font texture.
Each value represents “coverage”, i.e. how much a texel is covered by a character.
This is roughly interpreted as the opacity of a white image.
Fields§
§size: [usize; 2]
width, height
pixels: Vec<f32>
The coverage value.
Often you want to use Self::srgba_pixels
instead.
Implementations§
source§impl FontImage
impl FontImage
pub fn new(size: [usize; 2]) -> FontImage
pub fn width(&self) -> usize
pub fn height(&self) -> usize
sourcepub fn srgba_pixels(&self, gamma: Option<f32>) -> impl ExactSizeIterator
pub fn srgba_pixels(&self, gamma: Option<f32>) -> impl ExactSizeIterator
Returns the textures as sRGBA
premultiplied pixels, row by row, top to bottom.
gamma
should normally be set to None
.
If you are having problems with text looking skinny and pixelated, try using a low gamma, e.g. 0.4
.
Trait Implementations§
source§impl PartialEq for FontImage
impl PartialEq for FontImage
impl StructuralPartialEq for FontImage
Auto Trait Implementations§
impl RefUnwindSafe for FontImage
impl Send for FontImage
impl Sync for FontImage
impl Unpin for FontImage
impl UnwindSafe for FontImage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more