[−][src]Struct azul_webrender::DebugFlags
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]
fn clone(&self) -> DebugFlags
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for DebugFlags
[src]
impl Debug for DebugFlags
[src]
impl Default for DebugFlags
[src]
fn default() -> DebugFlags
[src]
impl<'de> Deserialize<'de> for DebugFlags
[src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<DebugFlags, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<DebugFlags, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Eq for DebugFlags
[src]
impl Extend<DebugFlags> for DebugFlags
[src]
fn extend<T>(&mut self, iterator: T) where
T: IntoIterator<Item = DebugFlags>,
[src]
T: IntoIterator<Item = DebugFlags>,
impl FromIterator<DebugFlags> for DebugFlags
[src]
fn from_iter<T>(iterator: T) -> DebugFlags where
T: IntoIterator<Item = DebugFlags>,
[src]
T: IntoIterator<Item = DebugFlags>,
impl Hash for DebugFlags
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl LowerHex for DebugFlags
[src]
impl MallocSizeOf for DebugFlags
[src]
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
[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]
fn cmp(&self, other: &DebugFlags) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<DebugFlags> for DebugFlags
[src]
fn eq(&self, other: &DebugFlags) -> bool
[src]
fn ne(&self, other: &DebugFlags) -> bool
[src]
impl PartialOrd<DebugFlags> for DebugFlags
[src]
fn partial_cmp(&self, other: &DebugFlags) -> Option<Ordering>
[src]
fn lt(&self, other: &DebugFlags) -> bool
[src]
fn le(&self, other: &DebugFlags) -> bool
[src]
fn gt(&self, other: &DebugFlags) -> bool
[src]
fn ge(&self, other: &DebugFlags) -> bool
[src]
impl Serialize for DebugFlags
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
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
impl RefUnwindSafe for DebugFlags
impl Send for DebugFlags
impl Sync for DebugFlags
impl Unpin for DebugFlags
impl UnwindSafe for DebugFlags
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,