Skip to content

Commit db3e5be

Browse files
noxgw3583
authored andcommitted
Update core-foundation-sys to 0.3
1 parent a1d19ca commit db3e5be

7 files changed

Lines changed: 103 additions & 218 deletions

File tree

Cargo.lock

Lines changed: 92 additions & 209 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/gfx/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ features = ["serde_derive", "ipc"]
4848

4949
[target.'cfg(target_os = "macos")'.dependencies]
5050
byteorder = "1.0"
51-
core-foundation = "0.2"
52-
core-graphics = "0.5"
53-
core-text = "2.0"
51+
core-foundation = "0.3"
52+
core-graphics = "0.6"
53+
core-text = "3.0"
5454

5555
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
5656
freetype = "0.2"

components/layout/webrender_helpers.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use msg::constellation_msg::PipelineId;
1616
use style::computed_values::{image_rendering, mix_blend_mode};
1717
use style::computed_values::filter::{self, Filter};
1818
use style::values::computed::BorderStyle;
19-
use webrender_traits::{self, DisplayListBuilder, LayoutTransform};
19+
use webrender_traits::{self, DisplayListBuilder, ExtendMode, LayoutTransform};
2020

2121
pub trait WebRenderDisplayListConverter {
2222
fn convert_to_webrender(&self, pipeline_id: PipelineId) -> DisplayListBuilder;
@@ -309,7 +309,8 @@ impl WebRenderDisplayItemConverter for DisplayItem {
309309
clip,
310310
start_point,
311311
end_point,
312-
item.stops.clone());
312+
item.stops.clone(),
313+
ExtendMode::Clamp);
313314
}
314315
DisplayItem::Line(..) => {
315316
println!("TODO DisplayItem::Line");

components/layout_thread/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,8 @@ impl LayoutThread {
987987
Some(get_root_flow_background_color(layout_root)),
988988
webrender_traits::Epoch(epoch_number),
989989
viewport_size,
990-
builder);
990+
builder,
991+
true);
991992
self.webrender_api.generate_frame();
992993
});
993994
}

components/servo/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ impl<Window> Browser<Window> where Window: WindowMethods + 'static {
184184
clear_framebuffer: true,
185185
clear_color: webrender_traits::ColorF::new(1.0, 1.0, 1.0, 1.0),
186186
render_target_debug: false,
187-
})
187+
}).unwrap()
188188
};
189189

190190
// Important that this call is done in a single-threaded fashion, we

ports/cef/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ features = ["serde_derive", "ipc"]
4242

4343
[target.'cfg(target_os="macos")'.dependencies]
4444
objc = "0.2"
45-
cocoa = "0.6"
45+
cocoa = "0.7"
4646

4747
[target.'cfg(target_os="linux")'.dependencies]
4848
x11 = "2.3"

ports/glutin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ log = "0.3.5"
1717
msg = {path = "../../components/msg"}
1818
net_traits = {path = "../../components/net_traits"}
1919
script_traits = {path = "../../components/script_traits"}
20-
servo-glutin = "0.7"
20+
servo-glutin = "0.8"
2121
servo_geometry = {path = "../../components/geometry"}
2222
servo_config = {path = "../../components/config"}
2323
servo_url = {path = "../../components/url"}

0 commit comments

Comments
 (0)