mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Partially implement radial gradients.
Missing: repeating radial gradients and keyword sizes.
This commit is contained in:
parent
2c445169ad
commit
f4bad2d920
4 changed files with 194 additions and 83 deletions
|
@ -528,6 +528,7 @@ pub enum DisplayItem {
|
||||||
WebGL(Box<WebGLDisplayItem>),
|
WebGL(Box<WebGLDisplayItem>),
|
||||||
Border(Box<BorderDisplayItem>),
|
Border(Box<BorderDisplayItem>),
|
||||||
Gradient(Box<GradientDisplayItem>),
|
Gradient(Box<GradientDisplayItem>),
|
||||||
|
RadialGradient(Box<RadialGradientDisplayItem>),
|
||||||
Line(Box<LineDisplayItem>),
|
Line(Box<LineDisplayItem>),
|
||||||
BoxShadow(Box<BoxShadowDisplayItem>),
|
BoxShadow(Box<BoxShadowDisplayItem>),
|
||||||
Iframe(Box<IframeDisplayItem>),
|
Iframe(Box<IframeDisplayItem>),
|
||||||
|
@ -900,6 +901,29 @@ pub struct GradientDisplayItem {
|
||||||
pub gradient: Gradient,
|
pub gradient: Gradient,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Paints a radial gradient.
|
||||||
|
#[derive(Clone, Deserialize, HeapSizeOf, Serialize)]
|
||||||
|
pub struct RadialGradient {
|
||||||
|
/// The center point of the gradient.
|
||||||
|
pub center: Point2D<Au>,
|
||||||
|
|
||||||
|
/// The radius of the gradient with an x and an y component.
|
||||||
|
pub radius: Size2D<Au>,
|
||||||
|
|
||||||
|
/// A list of color stops.
|
||||||
|
pub stops: Vec<GradientStop>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Deserialize, HeapSizeOf, Serialize)]
|
||||||
|
pub struct RadialGradientDisplayItem {
|
||||||
|
/// Fields common to all display item.
|
||||||
|
pub base: BaseDisplayItem,
|
||||||
|
|
||||||
|
/// Contains all gradient data.
|
||||||
|
pub gradient: RadialGradient,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// A normal border, supporting CSS border styles.
|
/// A normal border, supporting CSS border styles.
|
||||||
#[derive(Clone, HeapSizeOf, Deserialize, Serialize)]
|
#[derive(Clone, HeapSizeOf, Deserialize, Serialize)]
|
||||||
pub struct NormalBorder {
|
pub struct NormalBorder {
|
||||||
|
@ -1124,6 +1148,7 @@ impl DisplayItem {
|
||||||
DisplayItem::WebGL(ref webgl_item) => &webgl_item.base,
|
DisplayItem::WebGL(ref webgl_item) => &webgl_item.base,
|
||||||
DisplayItem::Border(ref border) => &border.base,
|
DisplayItem::Border(ref border) => &border.base,
|
||||||
DisplayItem::Gradient(ref gradient) => &gradient.base,
|
DisplayItem::Gradient(ref gradient) => &gradient.base,
|
||||||
|
DisplayItem::RadialGradient(ref gradient) => &gradient.base,
|
||||||
DisplayItem::Line(ref line) => &line.base,
|
DisplayItem::Line(ref line) => &line.base,
|
||||||
DisplayItem::BoxShadow(ref box_shadow) => &box_shadow.base,
|
DisplayItem::BoxShadow(ref box_shadow) => &box_shadow.base,
|
||||||
DisplayItem::Iframe(ref iframe) => &iframe.base,
|
DisplayItem::Iframe(ref iframe) => &iframe.base,
|
||||||
|
@ -1241,6 +1266,7 @@ impl fmt::Debug for DisplayItem {
|
||||||
DisplayItem::WebGL(_) => "WebGL".to_owned(),
|
DisplayItem::WebGL(_) => "WebGL".to_owned(),
|
||||||
DisplayItem::Border(_) => "Border".to_owned(),
|
DisplayItem::Border(_) => "Border".to_owned(),
|
||||||
DisplayItem::Gradient(_) => "Gradient".to_owned(),
|
DisplayItem::Gradient(_) => "Gradient".to_owned(),
|
||||||
|
DisplayItem::RadialGradient(_) => "RadialGradient".to_owned(),
|
||||||
DisplayItem::Line(_) => "Line".to_owned(),
|
DisplayItem::Line(_) => "Line".to_owned(),
|
||||||
DisplayItem::BoxShadow(_) => "BoxShadow".to_owned(),
|
DisplayItem::BoxShadow(_) => "BoxShadow".to_owned(),
|
||||||
DisplayItem::Iframe(_) => "Iframe".to_owned(),
|
DisplayItem::Iframe(_) => "Iframe".to_owned(),
|
||||||
|
|
|
@ -25,7 +25,7 @@ use gfx::display_list::{BLUR_INFLATION_FACTOR, BaseDisplayItem, BorderDetails};
|
||||||
use gfx::display_list::{BorderDisplayItem, ImageBorder, NormalBorder};
|
use gfx::display_list::{BorderDisplayItem, ImageBorder, NormalBorder};
|
||||||
use gfx::display_list::{BorderRadii, BoxShadowClipMode, BoxShadowDisplayItem, ClippingRegion};
|
use gfx::display_list::{BorderRadii, BoxShadowClipMode, BoxShadowDisplayItem, ClippingRegion};
|
||||||
use gfx::display_list::{DisplayItem, DisplayItemMetadata, DisplayList, DisplayListSection};
|
use gfx::display_list::{DisplayItem, DisplayItemMetadata, DisplayList, DisplayListSection};
|
||||||
use gfx::display_list::{GradientDisplayItem, IframeDisplayItem, ImageDisplayItem};
|
use gfx::display_list::{GradientDisplayItem, RadialGradientDisplayItem, IframeDisplayItem, ImageDisplayItem};
|
||||||
use gfx::display_list::{LineDisplayItem, OpaqueNode};
|
use gfx::display_list::{LineDisplayItem, OpaqueNode};
|
||||||
use gfx::display_list::{SolidColorDisplayItem, ScrollRoot, StackingContext, StackingContextType};
|
use gfx::display_list::{SolidColorDisplayItem, ScrollRoot, StackingContext, StackingContextType};
|
||||||
use gfx::display_list::{TextDisplayItem, TextOrientation, WebGLDisplayItem, WebRenderImageInfo};
|
use gfx::display_list::{TextDisplayItem, TextOrientation, WebGLDisplayItem, WebRenderImageInfo};
|
||||||
|
@ -33,7 +33,7 @@ use gfx_traits::{combine_id_with_fragment_type, FragmentType, StackingContextId}
|
||||||
use inline::{FIRST_FRAGMENT_OF_ELEMENT, InlineFlow, LAST_FRAGMENT_OF_ELEMENT};
|
use inline::{FIRST_FRAGMENT_OF_ELEMENT, InlineFlow, LAST_FRAGMENT_OF_ELEMENT};
|
||||||
use ipc_channel::ipc;
|
use ipc_channel::ipc;
|
||||||
use list_item::ListItemFlow;
|
use list_item::ListItemFlow;
|
||||||
use model::{self, MaybeAuto};
|
use model::{self, MaybeAuto, specified};
|
||||||
use msg::constellation_msg::PipelineId;
|
use msg::constellation_msg::PipelineId;
|
||||||
use net_traits::image::base::PixelFormat;
|
use net_traits::image::base::PixelFormat;
|
||||||
use net_traits::image_cache::UsePlaceholder;
|
use net_traits::image_cache::UsePlaceholder;
|
||||||
|
@ -58,8 +58,9 @@ use style::properties::longhands::border_image_repeat::computed_value::RepeatKey
|
||||||
use style::properties::style_structs;
|
use style::properties::style_structs;
|
||||||
use style::servo::restyle_damage::REPAINT;
|
use style::servo::restyle_damage::REPAINT;
|
||||||
use style::values::{Either, RGBA, computed};
|
use style::values::{Either, RGBA, computed};
|
||||||
use style::values::computed::{AngleOrCorner, Gradient, GradientItem, GradientKind};
|
use style::values::computed::{AngleOrCorner, Gradient, GradientKind, LengthOrPercentage, LengthOrPercentageOrAuto};
|
||||||
use style::values::computed::{LengthOrPercentage, LengthOrPercentageOrAuto, NumberOrPercentage};
|
use style::values::computed::{LengthOrKeyword, LengthOrPercentageOrKeyword, NumberOrPercentage};
|
||||||
|
use style::values::computed::image::{ColorStop, EndingShape, SizeKeyword};
|
||||||
use style::values::specified::{HorizontalDirection, VerticalDirection};
|
use style::values::specified::{HorizontalDirection, VerticalDirection};
|
||||||
use style_traits::CSSPixel;
|
use style_traits::CSSPixel;
|
||||||
use style_traits::cursor::Cursor;
|
use style_traits::cursor::Cursor;
|
||||||
|
@ -391,6 +392,12 @@ pub trait FragmentDisplayListBuilding {
|
||||||
style: &ServoComputedValues)
|
style: &ServoComputedValues)
|
||||||
-> Option<display_list::Gradient>;
|
-> Option<display_list::Gradient>;
|
||||||
|
|
||||||
|
fn convert_radial_gradient(&self,
|
||||||
|
absolute_bounds: &Rect<Au>,
|
||||||
|
gradient: &Gradient,
|
||||||
|
style: &ServoComputedValues)
|
||||||
|
-> Option<display_list::RadialGradient>;
|
||||||
|
|
||||||
/// Adds the display items necessary to paint the background linear gradient of this fragment
|
/// Adds the display items necessary to paint the background linear gradient of this fragment
|
||||||
/// to the appropriate section of the display list.
|
/// to the appropriate section of the display list.
|
||||||
fn build_display_list_for_background_gradient(&self,
|
fn build_display_list_for_background_gradient(&self,
|
||||||
|
@ -588,6 +595,85 @@ fn build_border_radius_for_inner_rect(outer_rect: &Rect<Au>,
|
||||||
radii
|
radii
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn convert_gradient_stops(gradient_stops: &[ColorStop],
|
||||||
|
length: Au,
|
||||||
|
style: &ServoComputedValues) -> Vec<GradientStop> {
|
||||||
|
// Determine the position of each stop per CSS-IMAGES § 3.4.
|
||||||
|
//
|
||||||
|
// FIXME(#3908, pcwalton): Make sure later stops can't be behind earlier stops.
|
||||||
|
let stop_items = gradient.items.iter().filter_map(|item| {
|
||||||
|
match *item {
|
||||||
|
GradientItem::ColorStop(ref stop) => Some(stop),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}).collect::<Vec<_>>();
|
||||||
|
let mut stops = Vec::with_capacity(stop_items.len());
|
||||||
|
let mut stop_run = None;
|
||||||
|
for (i, stop) in stop_items.iter().enumerate() {
|
||||||
|
let offset = match stop.position {
|
||||||
|
None => {
|
||||||
|
if stop_run.is_none() {
|
||||||
|
// Initialize a new stop run.
|
||||||
|
let start_offset = if i == 0 {
|
||||||
|
0.0
|
||||||
|
} else {
|
||||||
|
// `unwrap()` here should never fail because this is the beginning of
|
||||||
|
// a stop run, which is always bounded by a length or percentage.
|
||||||
|
position_to_offset(stop_items[i - 1].position.unwrap(), length)
|
||||||
|
};
|
||||||
|
let (end_index, end_offset) =
|
||||||
|
match stop_items[i..]
|
||||||
|
.iter()
|
||||||
|
.enumerate()
|
||||||
|
.find(|&(_, ref stop)| stop.position.is_some()) {
|
||||||
|
None => (stop_items.len() - 1, 1.0),
|
||||||
|
Some((end_index, end_stop)) => {
|
||||||
|
// `unwrap()` here should never fail because this is the end of
|
||||||
|
// a stop run, which is always bounded by a length or
|
||||||
|
// percentage.
|
||||||
|
(end_index,
|
||||||
|
position_to_offset(end_stop.position.unwrap(), length))
|
||||||
|
}
|
||||||
|
};
|
||||||
|
stop_run = Some(StopRun {
|
||||||
|
start_offset: start_offset,
|
||||||
|
end_offset: end_offset,
|
||||||
|
start_index: i,
|
||||||
|
stop_count: end_index - i,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
let stop_run = stop_run.unwrap();
|
||||||
|
let stop_run_length = stop_run.end_offset - stop_run.start_offset;
|
||||||
|
if stop_run.stop_count == 0 {
|
||||||
|
stop_run.end_offset
|
||||||
|
} else {
|
||||||
|
stop_run.start_offset +
|
||||||
|
stop_run_length * (i - stop_run.start_index) as f32 /
|
||||||
|
(stop_run.stop_count as f32)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(position) => {
|
||||||
|
stop_run = None;
|
||||||
|
position_to_offset(position, length)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
stops.push(GradientStop {
|
||||||
|
offset: offset,
|
||||||
|
color: style.resolve_color(stop.color).to_gfx_color()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
stops
|
||||||
|
}
|
||||||
|
|
||||||
|
fn convert_size_keyword(_keyword: SizeKeyword,
|
||||||
|
_circle: bool,
|
||||||
|
_size: &Size2D<Au>,
|
||||||
|
_center: &Point2D<Au>) -> Size2D<Au> {
|
||||||
|
println!("TODO Implement size-keyword for radial gradients.");
|
||||||
|
return Size2D::zero();
|
||||||
|
}
|
||||||
|
|
||||||
impl FragmentDisplayListBuilding for Fragment {
|
impl FragmentDisplayListBuilding for Fragment {
|
||||||
fn build_display_list_for_background_if_applicable(&self,
|
fn build_display_list_for_background_if_applicable(&self,
|
||||||
state: &mut DisplayListBuildState,
|
state: &mut DisplayListBuildState,
|
||||||
|
@ -653,15 +739,12 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
match background_image.0 {
|
match background_image.0 {
|
||||||
None => {}
|
None => {}
|
||||||
Some(computed::Image::Gradient(ref gradient)) => {
|
Some(computed::Image::Gradient(ref gradient)) => {
|
||||||
// FIXME: Radial gradients aren't implemented yet.
|
self.build_display_list_for_background_gradient(state,
|
||||||
if let GradientKind::Linear(_) = gradient.gradient_kind {
|
display_list_section,
|
||||||
self.build_display_list_for_background_gradient(state,
|
&bounds,
|
||||||
display_list_section,
|
&clip,
|
||||||
&bounds,
|
gradient,
|
||||||
&clip,
|
style);
|
||||||
gradient,
|
|
||||||
style);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Some(computed::Image::Url(ref image_url)) => {
|
Some(computed::Image::Url(ref image_url)) => {
|
||||||
if let Some(url) = image_url.url() {
|
if let Some(url) = image_url.url() {
|
||||||
|
@ -923,7 +1006,6 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// FIXME: Radial gradients aren't implemented yet.
|
|
||||||
return None;
|
return None;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -945,71 +1027,9 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
let length = Au::from_f32_px(
|
let length = Au::from_f32_px(
|
||||||
(delta.x.to_f32_px() * 2.0).hypot(delta.y.to_f32_px() * 2.0));
|
(delta.x.to_f32_px() * 2.0).hypot(delta.y.to_f32_px() * 2.0));
|
||||||
|
|
||||||
// Determine the position of each stop per CSS-IMAGES § 3.4.
|
let stops = convert_gradient_stops(&gradient.stops[..],
|
||||||
//
|
length,
|
||||||
// FIXME(#3908, pcwalton): Make sure later stops can't be behind earlier stops.
|
style);
|
||||||
let stop_items = gradient.items.iter().filter_map(|item| {
|
|
||||||
match *item {
|
|
||||||
GradientItem::ColorStop(ref stop) => Some(stop),
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
}).collect::<Vec<_>>();
|
|
||||||
let mut stops = Vec::with_capacity(stop_items.len());
|
|
||||||
let mut stop_run = None;
|
|
||||||
for (i, stop) in stop_items.iter().enumerate() {
|
|
||||||
let offset = match stop.position {
|
|
||||||
None => {
|
|
||||||
if stop_run.is_none() {
|
|
||||||
// Initialize a new stop run.
|
|
||||||
let start_offset = if i == 0 {
|
|
||||||
0.0
|
|
||||||
} else {
|
|
||||||
// `unwrap()` here should never fail because this is the beginning of
|
|
||||||
// a stop run, which is always bounded by a length or percentage.
|
|
||||||
position_to_offset(stop_items[i - 1].position.unwrap(), length)
|
|
||||||
};
|
|
||||||
let (end_index, end_offset) =
|
|
||||||
match stop_items[i..]
|
|
||||||
.iter()
|
|
||||||
.enumerate()
|
|
||||||
.find(|&(_, ref stop)| stop.position.is_some()) {
|
|
||||||
None => (stop_items.len() - 1, 1.0),
|
|
||||||
Some((end_index, end_stop)) => {
|
|
||||||
// `unwrap()` here should never fail because this is the end of
|
|
||||||
// a stop run, which is always bounded by a length or
|
|
||||||
// percentage.
|
|
||||||
(end_index,
|
|
||||||
position_to_offset(end_stop.position.unwrap(), length))
|
|
||||||
}
|
|
||||||
};
|
|
||||||
stop_run = Some(StopRun {
|
|
||||||
start_offset: start_offset,
|
|
||||||
end_offset: end_offset,
|
|
||||||
start_index: i,
|
|
||||||
stop_count: end_index - i,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
let stop_run = stop_run.unwrap();
|
|
||||||
let stop_run_length = stop_run.end_offset - stop_run.start_offset;
|
|
||||||
if stop_run.stop_count == 0 {
|
|
||||||
stop_run.end_offset
|
|
||||||
} else {
|
|
||||||
stop_run.start_offset +
|
|
||||||
stop_run_length * (i - stop_run.start_index) as f32 /
|
|
||||||
(stop_run.stop_count as f32)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some(position) => {
|
|
||||||
stop_run = None;
|
|
||||||
position_to_offset(position, length)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
stops.push(GradientStop {
|
|
||||||
offset: offset,
|
|
||||||
color: style.resolve_color(stop.color).to_gfx_color()
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
let center = Point2D::new(absolute_bounds.size.width / 2,
|
let center = Point2D::new(absolute_bounds.size.width / 2,
|
||||||
absolute_bounds.size.height / 2);
|
absolute_bounds.size.height / 2);
|
||||||
|
@ -1021,6 +1041,43 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn convert_radial_gradient(&self,
|
||||||
|
absolute_bounds: &Rect<Au>,
|
||||||
|
gradient: &Gradient,
|
||||||
|
style: &ServoComputedValues) -> Option<display_list::RadialGradient> {
|
||||||
|
// FIXME: Repeating gradients aren't implemented yet.
|
||||||
|
if gradient.repeating {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
if let GradientKind::Radial(ref shape, ref center) = gradient.gradient_kind {
|
||||||
|
let center = Point2D::new(specified(center.horizontal, absolute_bounds.size.width),
|
||||||
|
specified(center.vertical, absolute_bounds.size.height));
|
||||||
|
let radius = match *shape {
|
||||||
|
EndingShape::Circle(LengthOrKeyword::Length(length))
|
||||||
|
=> Size2D::new(length, length),
|
||||||
|
EndingShape::Circle(LengthOrKeyword::Keyword(word))
|
||||||
|
=> convert_size_keyword(word, true, &absolute_bounds.size, ¢er),
|
||||||
|
EndingShape::Ellipse(LengthOrPercentageOrKeyword::LengthOrPercentage(horizontal,
|
||||||
|
vertical))
|
||||||
|
=> Size2D::new(specified(horizontal, absolute_bounds.size.width),
|
||||||
|
specified(vertical, absolute_bounds.size.height)),
|
||||||
|
EndingShape::Ellipse(LengthOrPercentageOrKeyword::Keyword(word))
|
||||||
|
=> convert_size_keyword(word, false, &absolute_bounds.size, ¢er),
|
||||||
|
};
|
||||||
|
let length = Au::from_f32_px(radius.width.to_f32_px().hypot(radius.height.to_f32_px()));
|
||||||
|
let stops = convert_gradient_stops(&gradient.stops[..],
|
||||||
|
length,
|
||||||
|
style);
|
||||||
|
Some(display_list::RadialGradient {
|
||||||
|
center: absolute_bounds.origin + center,
|
||||||
|
radius: radius,
|
||||||
|
stops: stops,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn build_display_list_for_background_gradient(&self,
|
fn build_display_list_for_background_gradient(&self,
|
||||||
state: &mut DisplayListBuildState,
|
state: &mut DisplayListBuildState,
|
||||||
display_list_section: DisplayListSection,
|
display_list_section: DisplayListSection,
|
||||||
|
@ -1031,9 +1088,7 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
let mut clip = clip.clone();
|
let mut clip = clip.clone();
|
||||||
clip.intersect_rect(absolute_bounds);
|
clip.intersect_rect(absolute_bounds);
|
||||||
|
|
||||||
let grad = self.convert_gradient(absolute_bounds, gradient, style);
|
if let Some(x) = self.convert_gradient(absolute_bounds, gradient, style) {
|
||||||
|
|
||||||
if let Some(x) = grad {
|
|
||||||
let base = state.create_base_display_item(absolute_bounds,
|
let base = state.create_base_display_item(absolute_bounds,
|
||||||
&clip,
|
&clip,
|
||||||
self.node,
|
self.node,
|
||||||
|
@ -1045,6 +1100,19 @@ impl FragmentDisplayListBuilding for Fragment {
|
||||||
gradient: x,
|
gradient: x,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
state.add_display_item(gradient_display_item);
|
||||||
|
} else if let Some(x) = self.convert_radial_gradient(absolute_bounds, gradient, style) {
|
||||||
|
let base = state.create_base_display_item(absolute_bounds,
|
||||||
|
&clip,
|
||||||
|
self.node,
|
||||||
|
style.get_cursor(Cursor::Default),
|
||||||
|
display_list_section);
|
||||||
|
|
||||||
|
let gradient_display_item = DisplayItem::RadialGradient(box RadialGradientDisplayItem {
|
||||||
|
base: base,
|
||||||
|
gradient: x,
|
||||||
|
});
|
||||||
|
|
||||||
state.add_display_item(gradient_display_item);
|
state.add_display_item(gradient_display_item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -380,6 +380,21 @@ impl WebRenderDisplayItemConverter for DisplayItem {
|
||||||
rect.size,
|
rect.size,
|
||||||
webrender_traits::LayoutSize::zero());
|
webrender_traits::LayoutSize::zero());
|
||||||
}
|
}
|
||||||
|
DisplayItem::RadialGradient(ref item) => {
|
||||||
|
let rect = item.base.bounds.to_rectf();
|
||||||
|
let center = item.gradient.center.to_pointf();
|
||||||
|
let radius = item.gradient.radius.to_sizef();
|
||||||
|
let clip = item.base.clip.to_clip_region(builder);
|
||||||
|
let gradient = builder.create_radial_gradient(center,
|
||||||
|
radius,
|
||||||
|
item.gradient.stops.clone(),
|
||||||
|
ExtendMode::Clamp);
|
||||||
|
builder.push_radial_gradient(rect,
|
||||||
|
clip,
|
||||||
|
gradient,
|
||||||
|
rect.size,
|
||||||
|
webrender_traits::LayoutSize::zero());
|
||||||
|
}
|
||||||
DisplayItem::Line(..) => {
|
DisplayItem::Line(..) => {
|
||||||
println!("TODO DisplayItem::Line");
|
println!("TODO DisplayItem::Line");
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,10 +14,12 @@ use std::fmt;
|
||||||
use style_traits::ToCss;
|
use style_traits::ToCss;
|
||||||
use values::computed::{Angle, Context, Length, LengthOrPercentage, NumberOrPercentage, ToComputedValue};
|
use values::computed::{Angle, Context, Length, LengthOrPercentage, NumberOrPercentage, ToComputedValue};
|
||||||
use values::computed::position::Position;
|
use values::computed::position::Position;
|
||||||
use values::specified::{self, HorizontalDirection, SizeKeyword, VerticalDirection};
|
use values::specified::{self, HorizontalDirection, VerticalDirection};
|
||||||
use values::specified::image::CompatMode;
|
use values::specified::image::CompatMode;
|
||||||
use values::specified::url::SpecifiedUrl;
|
use values::specified::url::SpecifiedUrl;
|
||||||
|
|
||||||
|
pub use values::specified::SizeKeyword;
|
||||||
|
|
||||||
|
|
||||||
impl ToComputedValue for specified::Image {
|
impl ToComputedValue for specified::Image {
|
||||||
type ComputedValue = Image;
|
type ComputedValue = Image;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue