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<'de> Deserialize<'de> for FontImage
impl<'de> Deserialize<'de> for FontImage
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FontImage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FontImage, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for FontImage
impl Serialize for FontImage
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FontImage
Auto Trait Implementations§
impl Freeze for FontImage
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more