Struct nuklear_sys::nk_font_config
[−]
[src]
pub struct nk_font_config {
pub next: *mut nk_font_config,
pub ttf_blob: *mut c_void,
pub ttf_size: nk_size,
pub ttf_data_owned_by_atlas: c_uchar,
pub merge_mode: c_uchar,
pub pixel_snap: c_uchar,
pub oversample_v: c_uchar,
pub oversample_h: c_uchar,
pub padding: [c_uchar; 3],
pub size: f32,
pub coord_type: nk_font_coord_type,
pub spacing: nk_vec2,
pub range: *const nk_rune,
pub font: *mut nk_baked_font,
pub fallback_glyph: nk_rune,
}Fields
next: *mut nk_font_config
ttf_blob: *mut c_void
ttf_size: nk_size
ttf_data_owned_by_atlas: c_uchar
merge_mode: c_uchar
pixel_snap: c_uchar
oversample_v: c_uchar
oversample_h: c_uchar
padding: [c_uchar; 3]
size: f32
coord_type: nk_font_coord_type
spacing: nk_vec2
range: *const nk_rune
font: *mut nk_baked_font
fallback_glyph: nk_rune
Trait Implementations
impl Debug for nk_font_config[src]
impl Copy for nk_font_config[src]
impl Clone for nk_font_config[src]
fn clone(&self) -> nk_font_config
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more