Enum arcdps_imgui::FontAtlasRefMut
source · pub enum FontAtlasRefMut<'a> {
Owned(&'a mut FontAtlas),
Shared(RefMut<'a, SharedFontAtlas>),
}
Expand description
A mutably borrowed reference to a (possibly shared) font atlas
Variants§
Methods from Deref<Target = FontAtlas>§
pub fn add_font(&mut self, font_sources: &[FontSource<'_>]) -> FontId
pub fn fonts(&self) -> Vec<FontId>
pub fn get_font(&self, id: FontId) -> Option<&Font>
sourcepub fn build_alpha8_texture(&mut self) -> FontAtlasTexture<'_>
pub fn build_alpha8_texture(&mut self) -> FontAtlasTexture<'_>
Builds a 1 byte per-pixel font atlas texture
sourcepub fn build_rgba32_texture(&mut self) -> FontAtlasTexture<'_>
pub fn build_rgba32_texture(&mut self) -> FontAtlasTexture<'_>
Builds a 4 byte per-pixel font atlas texture
sourcepub fn clear_fonts(&mut self)
pub fn clear_fonts(&mut self)
Clears output font data (glyph storage, UV coordinates)
sourcepub fn clear_tex_data(&mut self)
pub fn clear_tex_data(&mut self)
Clears output texture data.
Can be used to save RAM once the texture has been transferred to the GPU.
sourcepub fn clear_input_data(&mut self)
pub fn clear_input_data(&mut self)
Clears all the data used to build the textures and fonts
Trait Implementations§
source§impl<'a> Deref for FontAtlasRefMut<'a>
impl<'a> Deref for FontAtlasRefMut<'a>
Auto Trait Implementations§
impl<'a> Freeze for FontAtlasRefMut<'a>
impl<'a> !RefUnwindSafe for FontAtlasRefMut<'a>
impl<'a> !Send for FontAtlasRefMut<'a>
impl<'a> !Sync for FontAtlasRefMut<'a>
impl<'a> Unpin for FontAtlasRefMut<'a>
impl<'a> !UnwindSafe for FontAtlasRefMut<'a>
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