[][src]Struct azul_core::window::DebugState

pub struct DebugState {
    pub profiler_dbg: bool,
    pub render_target_dbg: bool,
    pub texture_cache_dbg: bool,
    pub gpu_time_queries: bool,
    pub gpu_sample_queries: bool,
    pub disable_batching: bool,
    pub epochs: bool,
    pub compact_profiler: bool,
    pub echo_driver_messages: bool,
    pub new_frame_indicator: bool,
    pub new_scene_indicator: bool,
    pub show_overdraw: bool,
    pub gpu_cache_dbg: bool,
}

Toggles webrender debug flags (will make stuff appear on the screen that you might not want to - used for debugging purposes)

Fields

profiler_dbg: bool

Toggles webrender::DebugFlags::PROFILER_DBG

render_target_dbg: bool

Toggles webrender::DebugFlags::RENDER_TARGET_DBG

texture_cache_dbg: bool

Toggles webrender::DebugFlags::TEXTURE_CACHE_DBG

gpu_time_queries: bool

Toggles webrender::DebugFlags::GPU_TIME_QUERIES

gpu_sample_queries: bool

Toggles webrender::DebugFlags::GPU_SAMPLE_QUERIES

disable_batching: bool

Toggles webrender::DebugFlags::DISABLE_BATCHING

epochs: bool

Toggles webrender::DebugFlags::EPOCHS

compact_profiler: bool

Toggles webrender::DebugFlags::COMPACT_PROFILER

echo_driver_messages: bool

Toggles webrender::DebugFlags::ECHO_DRIVER_MESSAGES

new_frame_indicator: bool

Toggles webrender::DebugFlags::NEW_FRAME_INDICATOR

new_scene_indicator: bool

Toggles webrender::DebugFlags::NEW_SCENE_INDICATOR

show_overdraw: bool

Toggles webrender::DebugFlags::SHOW_OVERDRAW

gpu_cache_dbg: bool

Toggles webrender::DebugFlagsFGPU_CACHE_DBG

Trait Implementations

impl Clone for DebugState[src]

impl Copy for DebugState[src]

impl Debug for DebugState[src]

impl Default for DebugState[src]

impl Eq for DebugState[src]

impl Hash for DebugState[src]

impl Ord for DebugState[src]

impl PartialEq<DebugState> for DebugState[src]

impl PartialOrd<DebugState> for DebugState[src]

impl StructuralEq for DebugState[src]

impl StructuralPartialEq for DebugState[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.