pub struct AutoExposure {
pub exposure: f32,
pub avg_luminance: f32,
/* private fields */
}Expand description
Tracks scene luminance and computes auto-exposure.
Fields§
§exposure: f32Current exposure value.
avg_luminance: f32Smoothed average luminance (for display).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AutoExposure
impl RefUnwindSafe for AutoExposure
impl Send for AutoExposure
impl Sync for AutoExposure
impl Unpin for AutoExposure
impl UnsafeUnpin for AutoExposure
impl UnwindSafe for AutoExposure
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