Struct arcdps_imgui::SharedFontAtlas
source · pub struct SharedFontAtlas(/* private fields */);
Expand description
A font atlas that can be shared between contexts
Implementations§
pub fn create() -> SharedFontAtlas
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§
Auto Trait Implementations§
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