pub struct OverdrawStatistics {
pub pixels_covered: u32,
pub pixels_shaded: u32,
pub overdraw: f32,
}
Fields§
§pixels_covered: u32
§pixels_shaded: u32
§overdraw: f32
Shaded pixels / covered pixels; best case is 1.0
Trait Implementations§
Source§impl Default for OverdrawStatistics
impl Default for OverdrawStatistics
Source§fn default() -> OverdrawStatistics
fn default() -> OverdrawStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OverdrawStatistics
impl RefUnwindSafe for OverdrawStatistics
impl Send for OverdrawStatistics
impl Sync for OverdrawStatistics
impl Unpin for OverdrawStatistics
impl UnwindSafe for OverdrawStatistics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more