Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd DisplayListBuilder::with_capacity for finer capacity management by servo/gecko #1399
Conversation
…y gecko/servo
|
@bors-servo r+ |
|
|
bors-servo
added a commit
that referenced
this pull request
Jun 19, 2017
Add DisplayListBuilder::with_capacity for finer capacity management by servo/gecko Gecko makes tons of tiny ones, servo makes one huge one. They need different strategies. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/webrender/1399) <!-- Reviewable:end -->
|
|
bors-servo
added a commit
to servo/servo
that referenced
this pull request
Jul 24, 2017
use DisplayListBuilder::with_capacity DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. <!-- 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/17406) <!-- Reviewable:end -->
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Jul 25, 2017
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : 2f8907f18d78e9a546a487ca0a0035db4a9450f6
JerryShih
pushed a commit
to JerryShih/gecko-dev
that referenced
this pull request
Jul 27, 2017
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca
aethanyc
pushed a commit
to aethanyc/gecko-dev
that referenced
this pull request
Jul 28, 2017
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified-and-comments-removed
that referenced
this pull request
Oct 1, 2019
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca UltraBlame original commit: 9dd60bf73988336871b087627eb849f043a43e5c
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-comments-removed
that referenced
this pull request
Oct 1, 2019
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca UltraBlame original commit: 9dd60bf73988336871b087627eb849f043a43e5c
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified
that referenced
this pull request
Oct 1, 2019
…kro:with_cap); r=jdm DO NOT MERGE until servo/webrender#1399 has landed in Servo. Previously webrender was reserving 1MB of space for each display list (empirically pages weighed between 100k and 10MB when I implemented this). This was problematic for gecko because they used webrender differently. This just brings Servo back to where it was. Source-Repo: https://github.com/servo/servo Source-Revision: 3629efba7508bf115ad0127d2567af7090a9f8ca UltraBlame original commit: 9dd60bf73988336871b087627eb849f043a43e5c
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Gankra commentedJun 19, 2017
•
edited by larsbergstrom
Gecko makes tons of tiny ones, servo makes one huge one. They need different strategies.
This change is