pub enum GammaMode {
Auto,
Linear,
Gamma22,
}Expand description
Gamma correction mode for the WGPU renderer
Variants§
Auto
Automatically pick gamma based on render target format (default)
Linear
Force linear output (gamma = 1.0)
Gamma22
Force gamma 2.2 curve (gamma = 2.2)
Trait Implementations§
impl Copy for GammaMode
impl Eq for GammaMode
impl StructuralPartialEq for GammaMode
Auto Trait Implementations§
impl Freeze for GammaMode
impl RefUnwindSafe for GammaMode
impl Send for GammaMode
impl Sync for GammaMode
impl Unpin for GammaMode
impl UnsafeUnpin for GammaMode
impl UnwindSafe for GammaMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.