Enum tiny_skia::Shader [−][src]
A shader specifies the source color(s) for what is being drawn.
If a paint has no shader, then the paint’s color is used. If the paint has a shader, then the shader’s color(s) are use instead, but they are modulated by the paint’s alpha. This makes it easy to create a shader once (e.g. bitmap tiling or gradient) and then change its transparency without having to modify the original shader. Only the paint’s alpha needs to be modified.
Variants
SolidColor(Color)
A solid color shader.
LinearGradient(LinearGradient)
A linear gradient shader.
RadialGradient(RadialGradient)
A radial gradient shader.
Pattern(Pattern<'a>)
A pattern shader.
Implementations
impl<'a> Shader<'a>
[src]
pub fn is_opaque(&self) -> bool
[src]
Checks if the shader is guaranteed to produce only opaque colors.
pub fn transform(&mut self, ts: Transform)
[src]
Transforms the shader.
pub fn apply_opacity(&mut self, opacity: f32)
[src]
Shifts shader’s opacity.
opacity
will be clamped to the 0..=1 range.
This is roughly the same as Skia’s SkPaint::setAlpha
.
Unlike Skia, we do not support global alpha/opacity, which is in Skia
is set via the alpha channel of the SkPaint::fColor4f
.
Instead, you can shift the opacity of the shader to whatever value you need.
- For
SolidColor
this function will multiplycolor.alpha
byopacity
. - For gradients this function will multiply all colors by
opacity
. - For
Pattern
this function will multiplyPatter::opacity
byopacity
.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Shader<'a>
impl<'a> Send for Shader<'a>
impl<'a> Sync for Shader<'a>
impl<'a> Unpin for Shader<'a>
impl<'a> UnwindSafe for Shader<'a>
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,
pub fn borrow_mut(&mut self) -> &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> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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>,