/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
usecrate::display_item as di; usecrate::units::*;
/// Construct a gradient to be used in display lists. /// /// Each gradient needs at least two stops. pubstruct GradientBuilder {
stops: Vec<di::GradientStop>,
}
impl GradientBuilder { /// Create a new gradient builder. pubfn new() -> Self {
GradientBuilder {
stops: Vec::new(),
}
}
/// Create a gradient builder with a list of stops. pubfn with_stops(stops: Vec<di::GradientStop>) -> GradientBuilder {
GradientBuilder { stops }
}
/// Push an additional stop for the gradient. pubfn push(&mutself, stop: di::GradientStop) { self.stops.push(stop);
}
/// Get a reference to the list of stops. pubfn stops(&self) -> &[di::GradientStop] { self.stops.as_ref()
}
/// Produce a radial gradient, normalize the stops. /// /// Will replace the gradient with a single color /// if the radius negative. pubfn radial_gradient(
&mutself,
center: LayoutPoint,
radius: LayoutSize,
extend_mode: di::ExtendMode,
) -> di::RadialGradient { if radius.width <= 0.0 || radius.height <= 0.0 { // The shader cannot handle a non positive radius. So // reuse the stops vector and construct an equivalent // gradient. let last_color = self.stops.last().unwrap().color;
let (start_offset, end_offset) = self.normalize(extend_mode);
di::RadialGradient {
center,
radius,
start_offset,
end_offset,
extend_mode,
}
}
/// Produce a conic gradient, normalize the stops. pubfn conic_gradient(
&mutself,
center: LayoutPoint,
angle: f32,
extend_mode: di::ExtendMode,
) -> di::ConicGradient { let (start_offset, end_offset) = self.normalize(extend_mode);
di::ConicGradient {
center,
angle,
start_offset,
end_offset,
extend_mode,
}
}
/// Gradients can be defined with stops outside the range of [0, 1] /// when this happens the gradient needs to be normalized by adjusting /// the gradient stops and gradient line into an equivalent gradient /// with stops in the range [0, 1]. this is done by moving the beginning /// of the gradient line to where stop[0] and the end of the gradient line /// to stop[n-1]. this function adjusts the stops in place, and returns /// the amount to adjust the gradient line start and stop. fn normalize(&mutself, extend_mode: di::ExtendMode) -> (f32, f32) { let stops = &mutself.stops;
assert!(stops.len() >= 1);
let first = *stops.first().unwrap(); let last = *stops.last().unwrap();
let stops_delta = last.offset - first.offset;
if stops_delta > 0.000001 { for stop in stops {
stop.offset = (stop.offset - first.offset) / stops_delta;
}
(first.offset, last.offset)
} elseif stops_delta.is_nan() { // We have no good way to render a NaN offset, but make something // that is at least renderable.
stops.clear();
stops.push(di::GradientStop { color: last.color, offset: 0.0, });
stops.push(di::GradientStop { color: last.color, offset: 1.0, });
(0.0, 1.0)
} else { // We have a degenerate gradient and can't accurately transform the stops // what happens here depends on the repeat behavior, but in any case // we reconstruct the gradient stops to something simpler and equivalent
stops.clear();
match extend_mode {
di::ExtendMode::Clamp => { // This gradient is two colors split at the offset of the stops, // so create a gradient with two colors split at 0.5 and adjust // the gradient line so 0.5 is at the offset of the stops
stops.push(di::GradientStop { color: first.color, offset: 0.0, });
stops.push(di::GradientStop { color: first.color, offset: 0.5, });
stops.push(di::GradientStop { color: last.color, offset: 0.5, });
stops.push(di::GradientStop { color: last.color, offset: 1.0, });
let offset = last.offset;
(offset - 0.5, offset + 0.5)
}
di::ExtendMode::Repeat => { // A repeating gradient with stops that are all in the same // position should just display the last color. I believe the // spec says that it should be the average color of the gradient, // but this matches what Gecko and Blink does
stops.push(di::GradientStop { color: last.color, offset: 0.0, });
stops.push(di::GradientStop { color: last.color, offset: 1.0, });
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.