Closed
Bug 1415961
Opened 7 years ago
Closed 7 years ago
construct {Blur,Gradient}CacheData more efficiently
Categories
(Core :: Graphics, enhancement, P3)
Core
Graphics
Tracking
()
RESOLVED
FIXED
mozilla58
People
(Reporter: froydnj, Assigned: froydnj)
References
Details
Attachments
(1 file)
4.70 KB,
patch
|
jrmuizel
:
review+
|
Details | Diff | Splinter Review |
We pass in `const {Blur,Gradient}CacheKey&` to these functions. There's
no need to copy the cache keys here; we can just Move() the existing
objects in instead. Doing this saves unnecessary allocations and/or
refcounting.
![]() |
Assignee | |
Comment 1•7 years ago
|
||
Attachment #8926964 -
Flags: review?(jmuizelaar)
Updated•7 years ago
|
Attachment #8926964 -
Flags: review?(jmuizelaar) → review+
Pushed by nfroyd@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/d0ddd9a98e74
construct {Blur,Gradient}CacheData more efficiently; r=jrmuizel
![]() |
||
Comment 3•7 years ago
|
||
Backed out for bustage in thebes:
https://hg.mozilla.org/integration/mozilla-inbound/rev/ef4baef9df841886af07530afb4fa1f8ae8e93ab
Push with bustage: https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=d0ddd9a98e74e8c736f4f11ffb5a8ed32adb0bda&filter-resultStatus=testfailed&filter-resultStatus=busted&filter-resultStatus=exception&filter-resultStatus=usercancel&filter-resultStatus=runnable&filter-resultStatus=retry
Failure log: https://treeherder.mozilla.org/logviewer.html#?job_id=143450285&repo=mozilla-inbound
/builds/worker/workspace/build/src/gfx/thebes/gfxBlur.cpp:358:23: error: use of deleted function 'constexpr BlurCacheKey::BlurCacheKey(const BlurCacheKey&)'
/builds/worker/workspace/build/src/gfx/thebes/gfxGradientCache.cpp:98:23: error: use of deleted function 'mozilla::gfx::GradientCacheKey::GradientCacheKey(const mozilla::gfx::GradientCacheKey&)'
Flags: needinfo?(nfroyd)
Updated•7 years ago
|
status-firefox57:
--- → wontfix
Priority: -- → P3
Pushed by nfroyd@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/8e62f2933a39
construct {Blur,Gradient}CacheData more efficiently; r=jrmuizel
![]() |
Assignee | |
Updated•7 years ago
|
Flags: needinfo?(nfroyd)
Comment 5•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox58:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla58
You need to log in
before you can comment on or make changes to this bug.
Description
•