[−][src]Struct amethyst_rendy::palette::blend::PreAlpha
Premultiplied alpha wrapper.
Premultiplied colors are commonly used in composition algorithms to simplify the calculations. It may also be preferred when interpolating between colors, which is one of the reasons why it's offered as a separate type. The other reason is to make it easier to avoid unnecessary computations in composition chains.
use palette::{Blend, LinSrgb, LinSrgba}; use palette::blend::PreAlpha; let a = PreAlpha::from(LinSrgba::new(0.4, 0.5, 0.5, 0.3)); let b = PreAlpha::from(LinSrgba::new(0.3, 0.8, 0.4, 0.4)); let c = PreAlpha::from(LinSrgba::new(0.7, 0.1, 0.8, 0.8)); let res = LinSrgb::from_premultiplied(a.screen(b).overlay(c));
Note that converting to and from premultiplied alpha will cause the alpha component to be clamped to [0.0, 1.0].
Fields
color: C
The premultiplied color components (original.color * original.alpha
).
alpha: T
The transparency component. 0.0 is fully transparent and 1.0 is fully opaque.
Trait Implementations
impl<C, T> Default for PreAlpha<C, T> where
C: Default,
T: Float,
[src]
C: Default,
T: Float,
impl<C, T> Copy for PreAlpha<C, T> where
C: Copy,
T: Copy + Float,
[src]
C: Copy,
T: Copy + Float,
impl<T, C> Pixel<T> for PreAlpha<C, T> where
C: Pixel<T>,
T: Float,
[src]
C: Pixel<T>,
T: Float,
const CHANNELS: usize
[src]
fn as_raw<P>(&self) -> &P where
P: RawPixel<T> + ?Sized,
[src]
P: RawPixel<T> + ?Sized,
Cast as a reference to raw color components.
fn as_raw_mut<P>(&mut self) -> &mut P where
P: RawPixel<T> + ?Sized,
[src]
P: RawPixel<T> + ?Sized,
Cast as a mutable reference to raw color components.
fn into_raw<P>(self) -> P where
P: RawPixelSized<T>,
[src]
P: RawPixelSized<T>,
Convert from raw color components.
fn from_raw<P>(pixel: &P) -> &Self where
P: RawPixel<T> + ?Sized,
[src]
P: RawPixel<T> + ?Sized,
Cast from a reference to raw color components.
fn from_raw_mut<P>(pixel: &mut P) -> &mut Self where
P: RawPixel<T> + ?Sized,
[src]
P: RawPixel<T> + ?Sized,
Cast from a mutable reference to raw color components.
fn from_raw_slice(slice: &[T]) -> &[Self]
[src]
Cast a slice of raw color components to a slice of colors. Read more
fn from_raw_slice_mut(slice: &mut [T]) -> &mut [Self]
[src]
Cast a mutable slice of raw color components to a mutable slice of colors. Read more
fn into_raw_slice(slice: &[Self]) -> &[T]
[src]
Cast a slice of colors to a slice of raw color components. Read more
fn into_raw_slice_mut(slice: &mut [Self]) -> &mut [T]
[src]
Cast a mutable slice of colors to a mutable slice of raw color components. Read more
impl<C, T> Clone for PreAlpha<C, T> where
C: Clone,
T: Clone + Float,
[src]
C: Clone,
T: Clone + Float,
fn clone(&self) -> PreAlpha<C, T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'de, C, T> Deserialize<'de> for PreAlpha<C, T> where
C: Deserialize<'de>,
T: Float + Deserialize<'de>,
[src]
C: Deserialize<'de>,
T: Float + Deserialize<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PreAlpha<C, T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<PreAlpha<C, T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl<C, T> Blend for PreAlpha<C, T> where
C: Blend<Color = C> + ComponentWise<Scalar = T>,
T: Float,
[src]
C: Blend<Color = C> + ComponentWise<Scalar = T>,
T: Float,
type Color = C
The core color type. Typically Self
for color types without alpha.
fn into_premultiplied(self) -> PreAlpha<C, T>
[src]
fn from_premultiplied(color: PreAlpha<C, T>) -> PreAlpha<C, T>
[src]
fn blend<F>(self, destination: Self, blend_function: F) -> Self where
F: BlendFunction<Self::Color>,
[src]
F: BlendFunction<Self::Color>,
Blend self, as the source color, with destination
, using blend_function
. Anything that implements BlendFunction
is acceptable, including functions and closures. Read more
fn over(self, other: Self) -> Self
[src]
Place self
over other
. This is the good old common alpha composition equation. Read more
fn inside(self, other: Self) -> Self
[src]
Results in the parts of self
that overlaps the visible parts of other
. Read more
fn outside(self, other: Self) -> Self
[src]
Results in the parts of self
that lies outside the visible parts of other
. Read more
fn atop(self, other: Self) -> Self
[src]
Place self
over only the visible parts of other
.
fn xor(self, other: Self) -> Self
[src]
Results in either self
or other
, where they do not overlap.
fn plus(self, other: Self) -> Self
[src]
Add self
and other
. This uses the alpha component to regulate the effect, so it's not just plain component wise addition. Read more
fn multiply(self, other: Self) -> Self
[src]
Multiply self
with other
. This uses the alpha component to regulate the effect, so it's not just plain component wise multiplication. Read more
fn screen(self, other: Self) -> Self
[src]
Make a color which is at least as light as self
or other
.
fn overlay(self, other: Self) -> Self
[src]
Multiply self
or other
if other is dark, or screen them if other
is light. This results in an S curve. Read more
fn darken(self, other: Self) -> Self
[src]
Return the darkest parts of self
and other
.
fn lighten(self, other: Self) -> Self
[src]
Return the lightest parts of self
and other
.
fn dodge(self, other: Self) -> Self
[src]
Lighten other
to reflect self
. Results in other
if self
is black. Read more
fn burn(self, other: Self) -> Self
[src]
Darken other
to reflect self
. Results in other
if self
is white. Read more
fn hard_light(self, other: Self) -> Self
[src]
Multiply self
or other
if other is dark, or screen them if self
is light. This is similar to overlay
, but depends on self
instead of other
. Read more
fn soft_light(self, other: Self) -> Self
[src]
Lighten other
if self
is light, or darken other
as if it's burned if self
is dark. The effect is increased if the components of self
is further from 0.5. Read more
fn difference(self, other: Self) -> Self
[src]
Return the absolute difference between self
and other
. It's basically abs(self - other)
, but regulated by the alpha component. Read more
fn exclusion(self, other: Self) -> Self
[src]
Similar to difference
, but appears to result in a lower contrast. other
is inverted if self
is white, and preserved if self
is black. Read more
impl<C, T> PartialEq<PreAlpha<C, T>> for PreAlpha<C, T> where
C: PartialEq<C>,
T: PartialEq<T> + Float,
[src]
C: PartialEq<C>,
T: PartialEq<T> + Float,
impl<C, T> Add<PreAlpha<C, T>> for PreAlpha<C, T> where
C: Add<C>,
T: Float,
[src]
C: Add<C>,
T: Float,
type Output = PreAlpha<<C as Add<C>>::Output, T>
The resulting type after applying the +
operator.
fn add(self, other: PreAlpha<C, T>) -> PreAlpha<<C as Add<C>>::Output, T>
[src]
impl<T, C> Add<T> for PreAlpha<C, T> where
C: Add<T>,
T: Float,
[src]
C: Add<T>,
T: Float,
type Output = PreAlpha<<C as Add<T>>::Output, T>
The resulting type after applying the +
operator.
fn add(self, c: T) -> PreAlpha<<C as Add<T>>::Output, T>
[src]
impl<C, T, P> AsMut<P> for PreAlpha<C, T> where
C: Pixel<T>,
P: RawPixel<T> + ?Sized,
T: Float,
[src]
C: Pixel<T>,
P: RawPixel<T> + ?Sized,
T: Float,
impl<C, T> Sub<PreAlpha<C, T>> for PreAlpha<C, T> where
C: Sub<C>,
T: Float,
[src]
C: Sub<C>,
T: Float,
type Output = PreAlpha<<C as Sub<C>>::Output, T>
The resulting type after applying the -
operator.
fn sub(self, other: PreAlpha<C, T>) -> PreAlpha<<C as Sub<C>>::Output, T>
[src]
impl<T, C> Sub<T> for PreAlpha<C, T> where
C: Sub<T>,
T: Float,
[src]
C: Sub<T>,
T: Float,
type Output = PreAlpha<<C as Sub<T>>::Output, T>
The resulting type after applying the -
operator.
fn sub(self, c: T) -> PreAlpha<<C as Sub<T>>::Output, T>
[src]
impl<C, T> Mul<PreAlpha<C, T>> for PreAlpha<C, T> where
C: Mul<C>,
T: Float,
[src]
C: Mul<C>,
T: Float,
type Output = PreAlpha<<C as Mul<C>>::Output, T>
The resulting type after applying the *
operator.
fn mul(self, other: PreAlpha<C, T>) -> PreAlpha<<C as Mul<C>>::Output, T>
[src]
impl<T, C> Mul<T> for PreAlpha<C, T> where
C: Mul<T>,
T: Float,
[src]
C: Mul<T>,
T: Float,
type Output = PreAlpha<<C as Mul<T>>::Output, T>
The resulting type after applying the *
operator.
fn mul(self, c: T) -> PreAlpha<<C as Mul<T>>::Output, T>
[src]
impl<C> Mix for PreAlpha<C, <C as Mix>::Scalar> where
C: Mix,
[src]
C: Mix,
type Scalar = <C as Mix>::Scalar
The type of the mixing factor.
fn mix(
&self,
other: &PreAlpha<C, <C as Mix>::Scalar>,
factor: <C as Mix>::Scalar
) -> PreAlpha<C, <C as Mix>::Scalar>
[src]
&self,
other: &PreAlpha<C, <C as Mix>::Scalar>,
factor: <C as Mix>::Scalar
) -> PreAlpha<C, <C as Mix>::Scalar>
impl<T, C> Div<T> for PreAlpha<C, T> where
C: Div<T>,
T: Float,
[src]
C: Div<T>,
T: Float,
type Output = PreAlpha<<C as Div<T>>::Output, T>
The resulting type after applying the /
operator.
fn div(self, c: T) -> PreAlpha<<C as Div<T>>::Output, T>
[src]
impl<C, T> Div<PreAlpha<C, T>> for PreAlpha<C, T> where
C: Div<C>,
T: Float,
[src]
C: Div<C>,
T: Float,
type Output = PreAlpha<<C as Div<C>>::Output, T>
The resulting type after applying the /
operator.
fn div(self, other: PreAlpha<C, T>) -> PreAlpha<<C as Div<C>>::Output, T>
[src]
impl<C, T> ApproxEq for PreAlpha<C, T> where
C: ApproxEq<Epsilon = <T as ApproxEq>::Epsilon>,
T: ApproxEq + Float,
<T as ApproxEq>::Epsilon: Copy,
[src]
C: ApproxEq<Epsilon = <T as ApproxEq>::Epsilon>,
T: ApproxEq + Float,
<T as ApproxEq>::Epsilon: Copy,
type Epsilon = <T as ApproxEq>::Epsilon
Used for specifying relative comparisons.
fn default_epsilon() -> <PreAlpha<C, T> as ApproxEq>::Epsilon
[src]
fn default_max_relative() -> <PreAlpha<C, T> as ApproxEq>::Epsilon
[src]
fn default_max_ulps() -> u32
[src]
fn relative_eq(
&self,
other: &PreAlpha<C, T>,
epsilon: <PreAlpha<C, T> as ApproxEq>::Epsilon,
max_relative: <PreAlpha<C, T> as ApproxEq>::Epsilon
) -> bool
[src]
&self,
other: &PreAlpha<C, T>,
epsilon: <PreAlpha<C, T> as ApproxEq>::Epsilon,
max_relative: <PreAlpha<C, T> as ApproxEq>::Epsilon
) -> bool
fn ulps_eq(
&self,
other: &PreAlpha<C, T>,
epsilon: <PreAlpha<C, T> as ApproxEq>::Epsilon,
max_ulps: u32
) -> bool
[src]
&self,
other: &PreAlpha<C, T>,
epsilon: <PreAlpha<C, T> as ApproxEq>::Epsilon,
max_ulps: u32
) -> bool
fn relative_ne(
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
[src]
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
The inverse of ApproxEq::relative_eq
.
fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
The inverse of ApproxEq::ulps_eq
.
impl<C, T, P> AsRef<P> for PreAlpha<C, T> where
C: Pixel<T>,
P: RawPixel<T> + ?Sized,
T: Float,
[src]
C: Pixel<T>,
P: RawPixel<T> + ?Sized,
T: Float,
impl<C, T> Debug for PreAlpha<C, T> where
C: Debug,
T: Debug + Float,
[src]
C: Debug,
T: Debug + Float,
impl<C, T> From<PreAlpha<C, T>> for Alpha<C, T> where
C: ComponentWise<Scalar = T>,
T: Float,
[src]
C: ComponentWise<Scalar = T>,
T: Float,
impl<C, T> From<Alpha<C, T>> for PreAlpha<C, T> where
C: ComponentWise<Scalar = T>,
T: Float,
[src]
C: ComponentWise<Scalar = T>,
T: Float,
impl<C, T> DerefMut for PreAlpha<C, T> where
T: Float,
[src]
T: Float,
impl<C, T> Deref for PreAlpha<C, T> where
T: Float,
[src]
T: Float,
impl<C, T> Serialize for PreAlpha<C, T> where
C: Serialize,
T: Float + Serialize,
[src]
C: Serialize,
T: Float + Serialize,
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<C, T> ComponentWise for PreAlpha<C, T> where
C: ComponentWise<Scalar = T>,
T: Float,
[src]
C: ComponentWise<Scalar = T>,
T: Float,
type Scalar = T
The scalar type for color components.
fn component_wise<F>(&self, other: &PreAlpha<C, T>, f: F) -> PreAlpha<C, T> where
F: FnMut(T, T) -> T,
[src]
F: FnMut(T, T) -> T,
fn component_wise_self<F>(&self, f: F) -> PreAlpha<C, T> where
F: FnMut(T) -> T,
[src]
F: FnMut(T) -> T,
Auto Trait Implementations
impl<C, T> Unpin for PreAlpha<C, T> where
C: Unpin,
T: Unpin,
C: Unpin,
T: Unpin,
impl<C, T> Sync for PreAlpha<C, T> where
C: Sync,
T: Sync,
C: Sync,
T: Sync,
impl<C, T> Send for PreAlpha<C, T> where
C: Send,
T: Send,
C: Send,
T: Send,
impl<C, T> UnwindSafe for PreAlpha<C, T> where
C: UnwindSafe,
T: UnwindSafe,
C: UnwindSafe,
T: UnwindSafe,
impl<C, T> RefUnwindSafe for PreAlpha<C, T> where
C: RefUnwindSafe,
T: RefUnwindSafe,
C: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<T> MemoryUsage for T where
T: Deref + Debug,
<T as Deref>::Target: MemoryUsage,
[src]
T: Deref + Debug,
<T as Deref>::Target: MemoryUsage,
fn properties_required(&self) -> Properties
[src]
fn memory_fitness(&self, properties: Properties) -> u32
[src]
fn allocator_fitness(&self, kind: Kind) -> u32
[src]
impl<T> Supports<T> for T
[src]
impl<T> Erased for T
[src]
impl<T> Serialize for T where
T: Serialize + ?Sized,
[src]
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
[src]
impl<T> Scalar for T where
T: Copy + PartialEq<T> + Any + Debug,
[src]
T: Copy + PartialEq<T> + Any + Debug,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
[src]
fn is_in_subset(&self) -> bool
[src]
unsafe fn to_subset_unchecked(&self) -> SS
[src]
fn from_subset(element: &SS) -> SP
[src]
impl<T> Resource for T where
T: Any + Send + Sync,
[src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any,
[src]
T: Any,
fn get_type_id(&self) -> TypeId
[src]
impl<T> TryDefault for T where
T: Default,
[src]
T: Default,
fn try_default() -> Result<T, String>
[src]
fn unwrap_default() -> Self
[src]
Calls try_default
and panics on an error case.
impl<T> Event for T where
T: Send + Sync + 'static,
[src]
T: Send + Sync + 'static,
impl<T> Clone for T where
T: Clone,
[src]
T: Clone,
impl<T> Config for T where
T: Deserialize<'a> + Serialize + Default,
[src]
T: Deserialize<'a> + Serialize + Default,
fn load<P>(path: P) -> T where
P: AsRef<Path>,
[src]
P: AsRef<Path>,
fn load_no_fallback<P>(path: P) -> Result<T, ConfigError> where
P: AsRef<Path>,
[src]
P: AsRef<Path>,
fn load_bytes(bytes: &[u8]) -> Result<T, ConfigError>
[src]
fn write<P>(&self, path: P) -> Result<(), ConfigError> where
P: AsRef<Path>,
[src]
P: AsRef<Path>,