mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Auto merge of #17196 - glennw:update-wr-cache-glyphs, r=jdm
Update WR (move glyph data to gpu cache and halve glyph alloc/uploads). <!-- 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/17196) <!-- Reviewable:end -->
This commit is contained in:
commit
12dca42dd7
4 changed files with 8 additions and 8 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -3352,7 +3352,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "webrender"
|
||||
version = "0.40.0"
|
||||
source = "git+https://github.com/servo/webrender#b2614e4eb58f9dee08b8c38f96bc3bac834c837b"
|
||||
source = "git+https://github.com/servo/webrender#caec344131e53c13b022feedbf9d5e04054232c3"
|
||||
dependencies = [
|
||||
"app_units 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bincode 1.0.0-alpha6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -3381,7 +3381,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "webrender_traits"
|
||||
version = "0.40.0"
|
||||
source = "git+https://github.com/servo/webrender#b2614e4eb58f9dee08b8c38f96bc3bac834c837b"
|
||||
source = "git+https://github.com/servo/webrender#caec344131e53c13b022feedbf9d5e04054232c3"
|
||||
dependencies = [
|
||||
"app_units 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bincode 1.0.0-alpha6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -22738,11 +22738,11 @@
|
|||
"support"
|
||||
],
|
||||
"css/multiple_backgrounds.html": [
|
||||
"fef5a64b3dfe66ba69c6f49a80ac6ac0b8099278",
|
||||
"6ca8f5d4383f10b14446462071932e31d7de1aa4",
|
||||
"reftest"
|
||||
],
|
||||
"css/multiple_backgrounds_ref.html": [
|
||||
"9a2f39aaa51a30f510cf7ced78a3b704126a09f5",
|
||||
"a218179031b80f724d23fbcca9eb9f56c5f773fc",
|
||||
"support"
|
||||
],
|
||||
"css/multiple_css_class_a.html": [
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
#multibg {
|
||||
width: 700px;
|
||||
height: 400px;
|
||||
background: url(rust-logo-256x256.png) no-repeat bottom right / 256px 256px,
|
||||
url(bubbles.png) no-repeat left / 700px 100%,
|
||||
background: url("rust-logo-256x256.png") no-repeat bottom right / 256px 256px,
|
||||
url("bubbles.png?pipe=trickle(d1)") no-repeat left / 700px 100%,
|
||||
linear-gradient(to right, rgba(30, 75, 115, 1), rgba(255, 255, 255, 0)) no-repeat;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -22,13 +22,13 @@
|
|||
#bubblesbg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: url(bubbles.png) no-repeat left / 700px 100%;
|
||||
background: url("bubbles.png?pipe=trickle(d1)") no-repeat left / 700px 100%;
|
||||
position: relative;
|
||||
}
|
||||
#rustbg {
|
||||
width: 256px;
|
||||
height: 256px;
|
||||
background: url(rust-logo-256x256.png) no-repeat left / 256px 256px;
|
||||
background: url("rust-logo-256x256.png") no-repeat left / 256px 256px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue