Closed
Bug 1342833
Opened 9 years ago
Closed 9 years ago
WebRenderBridgeParent::ClearResources() does not clear DisplayList
Categories
(Core :: Graphics: WebRender, defect)
Core
Graphics: WebRender
Tracking
()
RESOLVED
FIXED
mozilla55
People
(Reporter: sotaro, Assigned: sotaro)
References
Details
Attachments
(1 file, 3 obsolete files)
|
4.90 KB,
patch
|
sotaro
:
review+
|
Details | Diff | Splinter Review |
WebRenderBridgeParent::ClearResources() is called during WebRenderBridgeParent destruction. It delete several resources related to webrender. But it does not clear DisplayList that is related to pipeline id.
| Assignee | ||
Comment 1•9 years ago
|
||
There is a issue related to it. But it seems better to clean it as much as possible by using current API soon.
https://github.com/servo/webrender/issues/691
https://github.com/servo/webrender/issues/930
| Assignee | ||
Comment 2•9 years ago
|
||
| Assignee | ||
Comment 3•9 years ago
|
||
| Assignee | ||
Updated•9 years ago
|
Attachment #8841414 -
Flags: review?(jmuizelaar)
| Assignee | ||
Updated•9 years ago
|
Assignee: nobody → sotaro.ikeda.g
| Assignee | ||
Updated•9 years ago
|
Attachment #8841414 -
Flags: review?(jmuizelaar)
Comment 4•9 years ago
|
||
Bug 1341064 removes mBuilder.
| Assignee | ||
Comment 5•9 years ago
|
||
Attachment #8841414 -
Attachment is obsolete: true
| Assignee | ||
Comment 6•9 years ago
|
||
Attachment #8842849 -
Attachment is obsolete: true
| Assignee | ||
Comment 7•9 years ago
|
||
| Assignee | ||
Updated•9 years ago
|
Attachment #8842852 -
Flags: review?(jmuizelaar)
Comment 8•9 years ago
|
||
Comment on attachment 8842852 [details] [diff] [review]
patch - Clear DisplayList in WebRenderBridgeParent::ClearResources()
Review of attachment 8842852 [details] [diff] [review]:
-----------------------------------------------------------------
::: gfx/webrender_bindings/src/bindings.rs
@@ +273,5 @@
> +
> + api.set_root_display_list(Some(root_background_color),
> + epoch,
> + LayoutSize::new(0.0, 0.0),
> + (pipeline_id, dl, aux),
You can just call frame_builder.dl_builder.finalize() directly here instead of assigning it to the variables above.
Attachment #8842852 -
Flags: review?(jmuizelaar) → review+
| Assignee | ||
Comment 9•9 years ago
|
||
Attachment #8842852 -
Attachment is obsolete: true
Attachment #8843792 -
Flags: review+
Comment 10•9 years ago
|
||
Pushed by sikeda@mozilla.com:
https://hg.mozilla.org/projects/graphics/rev/83bb36588e3a
WebRenderBridgeParent::ClearResources() does not clear DisplayList r=jrmuizel
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Comment 11•9 years ago
|
||
Target Milestone: --- → mozilla55
You need to log in
before you can comment on or make changes to this bug.
Description
•