Skip to content

Commit

Permalink
Auto merge of #23979 - Eijebong:deps-deps-deps, r=<try>
Browse files Browse the repository at this point in the history
Update webrender, image, png and raqote

This will avoid duping png because of the raqote backend

<!-- 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/23979)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Aug 15, 2019
2 parents 91469aa + 138ef57 commit 2fd6587
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 42 deletions.
65 changes: 29 additions & 36 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/compositing/Cargo.toml
Expand Up @@ -21,7 +21,7 @@ embedder_traits = {path = "../embedder_traits"}
euclid = "0.20"
gfx_traits = {path = "../gfx_traits"}
gleam = {version = "0.6", optional = true}
image = "0.21"
image = "0.22"
ipc-channel = "0.11"
libc = "0.2"
keyboard-types = "0.4.3"
Expand Down
1 change: 1 addition & 0 deletions components/layout/display_list/webrender_helpers.rs
Expand Up @@ -230,6 +230,7 @@ impl WebRenderDisplayItemConverter for DisplayItem {
raster_space: RasterSpace::Screen,
// TODO(pcwalton): Enable picture caching?
cache_tiles: false,
is_backdrop_root: false,
},
};

Expand Down
2 changes: 1 addition & 1 deletion components/net_traits/Cargo.toml
Expand Up @@ -20,7 +20,7 @@ headers = "0.2"
http = "0.1"
hyper = "0.12"
hyper_serde = "0.11"
piston_image = {package = "image", version = "0.21"}
piston_image = {package = "image", version = "0.22"}
ipc-channel = "0.11"
lazy_static = "1"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion components/script/Cargo.toml
Expand Up @@ -58,7 +58,7 @@ html5ever = "0.23"
http = "0.1"
hyper = "0.12"
hyper_serde = "0.11"
image = "0.21"
image = "0.22"
indexmap = "1.0.2"
ipc-channel = "0.11"
itertools = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion components/webdriver_server/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ cookie = "0.11"
crossbeam-channel = "0.3"
euclid = "0.20"
hyper = "0.12"
image = "0.21"
image = "0.22"
ipc-channel = "0.11"
keyboard-types = "0.4.3"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ports/glutin/Cargo.toml
Expand Up @@ -64,7 +64,7 @@ webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "glwindow", "headless"] }

[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies]
image = "0.21"
image = "0.22"

[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
osmesa-sys = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion ports/glutin/headed_window.rs
Expand Up @@ -675,7 +675,7 @@ fn load_icon(icon_bytes: &[u8]) -> Icon {
let (width, height) = image.dimensions();
let mut rgba = Vec::with_capacity((width * height) as usize * 4);
for (_, _, pixel) in image.pixels() {
rgba.extend_from_slice(&pixel.to_rgba().data);
rgba.extend_from_slice(&pixel.to_rgba().0);
}
(rgba, width, height)
};
Expand Down

0 comments on commit 2fd6587

Please sign in to comment.