Closed
Bug 1611434
Opened 5 years ago
Closed 2 years ago
WebRender "display_list_stats" compile time feature is broken
Categories
(Core :: Graphics: WebRender, defect, P3)
Core
Graphics: WebRender
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: kvark, Unassigned)
Details
Repro:
cd gfx/wr/webrender
cargo check --all-features
Output:
error[E0404]: expected trait, found enum `Peek`
--> webrender_api/src/display_list.rs:177:21
|
177 | fn log_slice<T: Peek>(
| ^^^^ not a trait
help: possible better candidate is found in another module, you can import it into scope
|
5 | use peek_poke::Peek;
Addressing this one shows up other errors inside this function.
We need to fix this and, more importantly, add the proper features to be tested by the "wr-test" jobs on CI.
Comment 1•2 years ago
|
||
This works.
Status: NEW → RESOLVED
Closed: 2 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•