[][src]Struct imgui_sys::ImFontAtlas

#[repr(C)]pub struct ImFontAtlas {
    pub Locked: bool,
    pub Flags: ImFontAtlasFlags,
    pub TexID: ImTextureID,
    pub TexDesiredWidth: c_int,
    pub TexGlyphPadding: c_int,
    pub TexPixelsAlpha8: *mut c_uchar,
    pub TexPixelsRGBA32: *mut c_uint,
    pub TexWidth: c_int,
    pub TexHeight: c_int,
    pub TexUvScale: ImVec2,
    pub TexUvWhitePixel: ImVec2,
    pub Fonts: ImVector_ImFontPtr,
    pub CustomRects: ImVector_ImFontAtlasCustomRect,
    pub ConfigData: ImVector_ImFontConfig,
    pub CustomRectIds: [c_int; 1],
}

Fields

Locked: boolFlags: ImFontAtlasFlagsTexID: ImTextureIDTexDesiredWidth: c_intTexGlyphPadding: c_intTexPixelsAlpha8: *mut c_ucharTexPixelsRGBA32: *mut c_uintTexWidth: c_intTexHeight: c_intTexUvScale: ImVec2TexUvWhitePixel: ImVec2Fonts: ImVector_ImFontPtrCustomRects: ImVector_ImFontAtlasCustomRectConfigData: ImVector_ImFontConfigCustomRectIds: [c_int; 1]

Trait Implementations

impl Clone for ImFontAtlas[src]

impl Copy for ImFontAtlas[src]

impl Debug for ImFontAtlas[src]

impl Default for ImFontAtlas[src]

impl PartialEq<ImFontAtlas> for ImFontAtlas[src]

impl StructuralPartialEq for ImFontAtlas[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.