diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-06-07 11:57:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-07 11:57:07 -0700 |
commit | bf46da065db58549a74c489d521f9375f4137637 (patch) | |
tree | f13d373c0cde75888eaba2c1db38dc04129669b3 /components/script_layout_interface | |
parent | eaefcbe55186b874b96c6dffc7e8dd2b6283634d (diff) | |
parent | fd17dcd60442e71f75010a34c6bcfe1c04aca3e5 (diff) | |
download | servo-bf46da065db58549a74c489d521f9375f4137637.tar.gz servo-bf46da065db58549a74c489d521f9375f4137637.zip |
Auto merge of #17150 - asajeffrey:script-paint-worklets-plumbing, r=jdm
Implemented the plumbing for paint worklets
<!-- Please describe your changes on the following line: -->
This PR implements the plumbing for paint worklets:
* Adding CSS values for paint worklets.
* Implementing a skeleton for the `PaintWorkletGlobalScope` webidl.
* Implementing an executor for paint worklet tasks, and passing it from script to layout.
* Building the display list items for paint worklet images.
This PR does not implement registering or calling paint worklets in JS.
Before it merges, this PR needs a reftest added for basic paint worklet functionality.
---
<!-- 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
- [ ] There are tests for these changes
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- 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/17150)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script_layout_interface')
-rw-r--r-- | components/script_layout_interface/message.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script_layout_interface/message.rs b/components/script_layout_interface/message.rs index 038967fdd04..104de7da3d9 100644 --- a/components/script_layout_interface/message.rs +++ b/components/script_layout_interface/message.rs @@ -14,6 +14,7 @@ use profile_traits::mem::ReportsChan; use rpc::LayoutRPC; use script_traits::{ConstellationControlMsg, LayoutControlMsg, LayoutMsg as ConstellationMsg}; use script_traits::{ScrollState, UntrustedNodeAddress, WindowSizeData}; +use script_traits::PaintWorkletExecutor; use servo_url::ServoUrl; use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender}; @@ -84,6 +85,9 @@ pub enum Msg { /// Tells layout about a single new scrolling offset from the script. The rest will /// remain untouched and layout won't forward this back to script. UpdateScrollStateFromScript(ScrollState), + + /// Tells layout that script has added some paint worklet modules. + SetPaintWorkletExecutor(Arc<PaintWorkletExecutor>), } |