[][src]Struct azul_webrender_api::DebugFlags

#[repr(C)]pub struct DebugFlags { /* fields omitted */ }

Flags to enable/disable various builtin debugging tools.

Implementations

impl DebugFlags[src]

pub const PROFILER_DBG: DebugFlags[src]

Display the frame profiler on screen.

pub const RENDER_TARGET_DBG: DebugFlags[src]

Display intermediate render targets on screen.

pub const TEXTURE_CACHE_DBG: DebugFlags[src]

Display all texture cache pages on screen.

pub const GPU_TIME_QUERIES: DebugFlags[src]

Display GPU timing results.

pub const GPU_SAMPLE_QUERIES: DebugFlags[src]

Query the number of pixels that pass the depth test divided and show it in the profiler as a percentage of the number of pixels in the screen (window width times height).

pub const DISABLE_BATCHING: DebugFlags[src]

Render each quad with their own draw call.

Terrible for performance but can help with understanding the drawing order when inspecting renderdoc or apitrace recordings.

pub const EPOCHS: DebugFlags[src]

Display the pipeline epochs.

pub const COMPACT_PROFILER: DebugFlags[src]

Reduce the amount of information displayed by the profiler so that it occupies less screen real-estate.

pub const ECHO_DRIVER_MESSAGES: DebugFlags[src]

Print driver messages to stdout.

pub const NEW_FRAME_INDICATOR: DebugFlags[src]

Show an indicator that moves every time a frame is rendered.

pub const NEW_SCENE_INDICATOR: DebugFlags[src]

Show an indicator that moves every time a scene is built.

pub const SHOW_OVERDRAW: DebugFlags[src]

Show an overlay displaying overdraw amount.

pub const GPU_CACHE_DBG: DebugFlags[src]

Display the contents of GPU cache.

pub const SLOW_FRAME_INDICATOR: DebugFlags[src]

Show a red bar that moves each time a slow frame is detected.

pub const TEXTURE_CACHE_DBG_CLEAR_EVICTED: DebugFlags[src]

Clear evicted parts of the texture cache for debugging purposes.

pub const PICTURE_CACHING_DBG: DebugFlags[src]

Show picture caching debug overlay

pub const PRIMITIVE_DBG: DebugFlags[src]

Highlight all primitives with colors based on kind.

pub const ZOOM_DBG: DebugFlags[src]

Draw a zoom widget showing part of the framebuffer zoomed in.

pub const SMALL_SCREEN: DebugFlags[src]

Scale the debug renderer down for a smaller screen. This will disrupt any mapping between debug display items and page content, so shouldn't be used with overlays like the picture caching or primitive display.

pub const DISABLE_OPAQUE_PASS: DebugFlags[src]

Disable various bits of the WebRender pipeline, to help narrow down where slowness might be coming from.

pub const DISABLE_ALPHA_PASS: DebugFlags[src]

pub const DISABLE_CLIP_MASKS: DebugFlags[src]

pub const DISABLE_TEXT_PRIMS: DebugFlags[src]

pub const DISABLE_GRADIENT_PRIMS: DebugFlags[src]

pub const OBSCURE_IMAGES: DebugFlags[src]

pub const GLYPH_FLASHING: DebugFlags[src]

Taint the transparent area of the glyphs with a random opacity to easily see when glyphs are re-rasterized.

pub const SMART_PROFILER: DebugFlags[src]

The profiler only displays information that is out of the ordinary.

pub const DISABLE_PICTURE_CACHING: DebugFlags[src]

Dynamically control whether picture caching is enabled.

pub const INVALIDATION_DBG: DebugFlags[src]

If set, dump picture cache invalidation debug to console.

pub const TILE_CACHE_LOGGING_DBG: DebugFlags[src]

Log tile cache to memory for later saving as part of wr-capture

pub const DISABLE_RASTER_ROOT_SCALING: DebugFlags[src]

For debugging, force-disable automatic scaling of establishes_raster_root pictures that are too large (ie go back to old behavior that prevents those large pictures from establishing a raster root).

pub const fn empty() -> DebugFlags[src]

Returns an empty set of flags

pub const fn all() -> DebugFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<DebugFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> DebugFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> DebugFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: DebugFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: DebugFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: DebugFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: DebugFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: DebugFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: DebugFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for DebugFlags[src]

impl BitAnd<DebugFlags> for DebugFlags[src]

type Output = DebugFlags

The resulting type after applying the & operator.

fn bitand(self, other: DebugFlags) -> DebugFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<DebugFlags> for DebugFlags[src]

fn bitand_assign(&mut self, other: DebugFlags)[src]

Disables all flags disabled in the set.

impl BitOr<DebugFlags> for DebugFlags[src]

type Output = DebugFlags

The resulting type after applying the | operator.

fn bitor(self, other: DebugFlags) -> DebugFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<DebugFlags> for DebugFlags[src]

fn bitor_assign(&mut self, other: DebugFlags)[src]

Adds the set of flags.

impl BitXor<DebugFlags> for DebugFlags[src]

type Output = DebugFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: DebugFlags) -> DebugFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<DebugFlags> for DebugFlags[src]

fn bitxor_assign(&mut self, other: DebugFlags)[src]

Toggles the set of flags.

impl Clone for DebugFlags[src]

impl Copy for DebugFlags[src]

impl Debug for DebugFlags[src]

impl Default for DebugFlags[src]

impl<'de> Deserialize<'de> for DebugFlags[src]

impl Eq for DebugFlags[src]

impl Extend<DebugFlags> for DebugFlags[src]

impl FromIterator<DebugFlags> for DebugFlags[src]

impl Hash for DebugFlags[src]

impl LowerHex for DebugFlags[src]

impl MallocSizeOf for DebugFlags[src]

impl Not for DebugFlags[src]

type Output = DebugFlags

The resulting type after applying the ! operator.

fn not(self) -> DebugFlags[src]

Returns the complement of this set of flags.

impl Octal for DebugFlags[src]

impl Ord for DebugFlags[src]

impl PartialEq<DebugFlags> for DebugFlags[src]

impl PartialOrd<DebugFlags> for DebugFlags[src]

impl Serialize for DebugFlags[src]

impl StructuralEq for DebugFlags[src]

impl StructuralPartialEq for DebugFlags[src]

impl Sub<DebugFlags> for DebugFlags[src]

type Output = DebugFlags

The resulting type after applying the - operator.

fn sub(self, other: DebugFlags) -> DebugFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<DebugFlags> for DebugFlags[src]

fn sub_assign(&mut self, other: DebugFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for DebugFlags[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.