aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/webrender_helpers.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-10-18 02:24:44 -0500
committerGitHub <noreply@github.com>2016-10-18 02:24:44 -0500
commit275278be44b96b683bee40a8d8a6462198ec9e39 (patch)
tree799bb466bdc457ec18e2b19c13aa4b0c991231af /components/layout/webrender_helpers.rs
parentd1e218d2f3d5c2cacccc025de838ca1768e6676a (diff)
parent983edb9b0bcba35ae749dde5796cbad63d59b6c8 (diff)
downloadservo-275278be44b96b683bee40a8d8a6462198ec9e39.tar.gz
servo-275278be44b96b683bee40a8d8a6462198ec9e39.zip
Auto merge of #13810 - mrobinson:names, r=Ms2ger
Remove Class from DisplayItem enum names <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [x] These changes do not require tests because this PR does not change behavior. It's only a rename. <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> This is probably a holdover from the days before namespaced enums. We can remove this part of the name to avoid a lot of visual noise. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13810) <!-- Reviewable:end -->
Diffstat (limited to 'components/layout/webrender_helpers.rs')
-rw-r--r--components/layout/webrender_helpers.rs30
1 files changed, 15 insertions, 15 deletions
diff --git a/components/layout/webrender_helpers.rs b/components/layout/webrender_helpers.rs
index bcc185e5882..85c5dff5858 100644
--- a/components/layout/webrender_helpers.rs
+++ b/components/layout/webrender_helpers.rs
@@ -262,7 +262,7 @@ impl WebRenderStackingContextConverter for StackingContext {
_force_positioned_stacking_level: bool) {
while let Some(item) = traversal.next() {
match item {
- &DisplayItem::PushStackingContextClass(ref stacking_context_item) => {
+ &DisplayItem::PushStackingContext(ref stacking_context_item) => {
let stacking_context = &stacking_context_item.stacking_context;
debug_assert!(stacking_context.context_type == StackingContextType::Real);
@@ -283,7 +283,7 @@ impl WebRenderStackingContextConverter for StackingContext {
builder.push_stacking_context(stacking_context_id);
}
- &DisplayItem::PopStackingContextClass(_) => return,
+ &DisplayItem::PopStackingContext(_) => return,
_ => item.convert_to_webrender(builder, frame_builder),
}
}
@@ -354,7 +354,7 @@ impl WebRenderDisplayListConverter for DisplayList {
let mut traversal = DisplayListTraversal::new(self);
let item = traversal.next();
match item {
- Some(&DisplayItem::PushStackingContextClass(ref stacking_context_item)) => {
+ Some(&DisplayItem::PushStackingContext(ref stacking_context_item)) => {
let stacking_context = &stacking_context_item.stacking_context;
stacking_context.convert_to_webrender(&mut traversal,
api,
@@ -375,7 +375,7 @@ impl WebRenderDisplayItemConverter for DisplayItem {
builder: &mut webrender_traits::DisplayListBuilder,
frame_builder: &mut WebRenderFrameBuilder) {
match *self {
- DisplayItem::SolidColorClass(ref item) => {
+ DisplayItem::SolidColor(ref item) => {
let color = item.color.to_colorf();
if color.a > 0.0 {
builder.push_rect(item.base.bounds.to_rectf(),
@@ -383,7 +383,7 @@ impl WebRenderDisplayItemConverter for DisplayItem {
color);
}
}
- DisplayItem::TextClass(ref item) => {
+ DisplayItem::Text(ref item) => {
let mut origin = item.baseline_origin.clone();
let mut glyphs = vec!();
@@ -418,7 +418,7 @@ impl WebRenderDisplayItemConverter for DisplayItem {
&mut frame_builder.auxiliary_lists_builder);
}
}
- DisplayItem::ImageClass(ref item) => {
+ DisplayItem::Image(ref item) => {
if let Some(id) = item.webrender_image.key {
if item.stretch_size.width > Au(0) &&
item.stretch_size.height > Au(0) {
@@ -431,12 +431,12 @@ impl WebRenderDisplayItemConverter for DisplayItem {
}
}
}
- DisplayItem::WebGLClass(ref item) => {
+ DisplayItem::WebGL(ref item) => {
builder.push_webgl_canvas(item.base.bounds.to_rectf(),
item.base.clip.to_clip_region(frame_builder),
item.context_id);
}
- DisplayItem::BorderClass(ref item) => {
+ DisplayItem::Border(ref item) => {
let rect = item.base.bounds.to_rectf();
let left = webrender_traits::BorderSide {
width: item.border_widths.left.to_f32_px(),
@@ -467,7 +467,7 @@ impl WebRenderDisplayItemConverter for DisplayItem {
bottom,
radius);
}
- DisplayItem::GradientClass(ref item) => {
+ DisplayItem::Gradient(ref item) => {
let rect = item.base.bounds.to_rectf();
let start_point = item.start_point.to_pointf();
let end_point = item.end_point.to_pointf();
@@ -482,13 +482,13 @@ impl WebRenderDisplayItemConverter for DisplayItem {
stops,
&mut frame_builder.auxiliary_lists_builder);
}
- DisplayItem::LineClass(..) => {
- println!("TODO DisplayItem::LineClass");
+ DisplayItem::Line(..) => {
+ println!("TODO DisplayItem::Line");
}
- DisplayItem::LayeredItemClass(..) => {
+ DisplayItem::LayeredItem(..) => {
panic!("Unexpected in webrender!");
}
- DisplayItem::BoxShadowClass(ref item) => {
+ DisplayItem::BoxShadow(ref item) => {
let rect = item.base.bounds.to_rectf();
let box_bounds = item.box_bounds.to_rectf();
builder.push_box_shadow(rect,
@@ -501,14 +501,14 @@ impl WebRenderDisplayItemConverter for DisplayItem {
item.border_radius.to_f32_px(),
item.clip_mode.to_clip_mode());
}
- DisplayItem::IframeClass(ref item) => {
+ DisplayItem::Iframe(ref item) => {
let rect = item.base.bounds.to_rectf();
let pipeline_id = item.iframe.to_webrender();
builder.push_iframe(rect,
item.base.clip.to_clip_region(frame_builder),
pipeline_id);
}
- DisplayItem::PushStackingContextClass(_) | DisplayItem::PopStackingContextClass(_) => {}
+ DisplayItem::PushStackingContext(_) | DisplayItem::PopStackingContext(_) => {}
}
}
}