Files
bitflags
cfg_if
dev_menu
draw_state
float
freetype
freetype_sys
gfx
gfx_core
gfx_debug_draw
gfx_text
input
libc
log
proc_macro2
quote
serde
serde_derive
syn
unicode_xid
vecmath
viewport
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use ffi;

#[repr(u32)]
#[derive(Copy, Clone)]
pub enum RenderMode {
    Normal = ffi::FT_RENDER_MODE_NORMAL,
    Light  = ffi::FT_RENDER_MODE_LIGHT,
    Mono   = ffi::FT_RENDER_MODE_MONO,
    Lcd    = ffi::FT_RENDER_MODE_LCD,
    LcdV   = ffi::FT_RENDER_MODE_LCD_V,
    Max    = ffi::FT_RENDER_MODE_MAX
}