[][src]Struct sapp_linux::sapp_desc

#[repr(C)]
pub struct sapp_desc {
    pub init_cb: Option<unsafe extern "C" fn()>,
    pub frame_cb: Option<unsafe extern "C" fn()>,
    pub cleanup_cb: Option<unsafe extern "C" fn()>,
    pub event_cb: Option<unsafe extern "C" fn(_: *const sapp_event)>,
    pub fail_cb: Option<unsafe extern "C" fn(_: *const c_char)>,
    pub user_data: *mut c_void,
    pub init_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub frame_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub cleanup_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub event_userdata_cb: Option<unsafe extern "C" fn(_: *const sapp_event, _: *mut c_void)>,
    pub fail_userdata_cb: Option<unsafe extern "C" fn(_: *const c_char, _: *mut c_void)>,
    pub width: c_int,
    pub height: c_int,
    pub sample_count: c_int,
    pub swap_interval: c_int,
    pub high_dpi: bool,
    pub fullscreen: bool,
    pub alpha: bool,
    pub window_title: *const c_char,
    pub user_cursor: bool,
    pub html5_canvas_name: *const c_char,
    pub html5_canvas_resize: bool,
    pub html5_preserve_drawing_buffer: bool,
    pub html5_premultiplied_alpha: bool,
    pub html5_ask_leave_site: bool,
    pub ios_keyboard_resizes_canvas: bool,
    pub gl_force_gles2: bool,
}

Fields

init_cb: Option<unsafe extern "C" fn()>frame_cb: Option<unsafe extern "C" fn()>cleanup_cb: Option<unsafe extern "C" fn()>event_cb: Option<unsafe extern "C" fn(_: *const sapp_event)>fail_cb: Option<unsafe extern "C" fn(_: *const c_char)>user_data: *mut c_voidinit_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>frame_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>cleanup_userdata_cb: Option<unsafe extern "C" fn(_: *mut c_void)>event_userdata_cb: Option<unsafe extern "C" fn(_: *const sapp_event, _: *mut c_void)>fail_userdata_cb: Option<unsafe extern "C" fn(_: *const c_char, _: *mut c_void)>width: c_intheight: c_intsample_count: c_intswap_interval: c_inthigh_dpi: boolfullscreen: boolalpha: boolwindow_title: *const c_charuser_cursor: boolhtml5_canvas_name: *const c_charhtml5_canvas_resize: boolhtml5_preserve_drawing_buffer: boolhtml5_premultiplied_alpha: boolhtml5_ask_leave_site: boolios_keyboard_resizes_canvas: boolgl_force_gles2: bool

Trait Implementations

impl Clone for sapp_desc[src]

impl Copy for sapp_desc[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.