Closed
Bug 823147
Opened 12 years ago
Closed 12 years ago
Avoid hitting D2D slow path when drawing radial gradients from css
Categories
(Core :: Graphics, defect)
Tracking
()
RESOLVED
FIXED
mozilla21
People
(Reporter: jrmuizel, Assigned: jrmuizel)
References
(Depends on 1 open bug)
Details
Attachments
(1 file, 2 obsolete files)
3.75 KB,
patch
|
roc
:
review+
lsblakk
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
This seems to happen quite a bit because we don't have an inner radius of 0
Assignee | ||
Comment 1•12 years ago
|
||
Assignee: nobody → jmuizelaar
Assignee | ||
Comment 2•12 years ago
|
||
Roc,
D2D doesn't support inner radii != 0. What are the reasons we need to adjust the gradient to start at the first stop? Should we only avoid that in the radial case, or can we get away with not adjusting it the rest of the time too.
// Cairo gradients must have stop positions in the range [0, 1]. So,
// stop positions will be normalized below by subtracting firstStop and then
// multiplying by stopScale.
So, for radial gradients it's OK to map lastStop to 1 and map 0 to 0, since firstStop must be >= 0. However, for linear gradients we could have a negative firstStop and cairo doesn't support that so we have to remap it at least in the case where it's negative.
Assignee | ||
Comment 4•12 years ago
|
||
Assignee | ||
Comment 5•12 years ago
|
||
Assignee | ||
Comment 6•12 years ago
|
||
Attachment #693989 -
Attachment is obsolete: true
Assignee | ||
Comment 7•12 years ago
|
||
This avoids moving the start position of non-repeating radial gradients so that they will go down the D2D fast path.
Attachment #704092 -
Attachment is obsolete: true
Attachment #704226 -
Flags: review?(roc)
Assignee | ||
Comment 8•12 years ago
|
||
Attachment #704226 -
Flags: review?(roc) → review+
Comment 9•12 years ago
|
||
Comment 10•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla21
Comment 11•12 years ago
|
||
Can we uplift this? This makes pages like http://www.psfk.com/2013/01/honda-gear-concept-is-brands-return-to-cool.html not DoS my browser.
Updated•12 years ago
|
status-b2g18:
--- → unaffected
status-firefox18:
--- → affected
status-firefox19:
--- → affected
status-firefox20:
--- → affected
status-firefox21:
--- → fixed
status-firefox-esr17:
--- → affected
tracking-firefox19:
--- → ?
tracking-firefox20:
--- → ?
Comment 12•12 years ago
|
||
I think https://bugzilla.mozilla.org/show_bug.cgi?id=813957 may report the same problem.
I'm not able to tell. But I point at it so you can close it if it's indeed related and fixed by this bug.
Comment 13•12 years ago
|
||
We'll track and uplift for Aurora, but it's too late to take this on beta and it doesn't meet ESR criteria so minusing for those.
Comment 14•12 years ago
|
||
Can we get an uplift nomination here? Merge Day is next Tuesday and it would be great to have this land while 20 is still on Aurora and before FF 20 beta 1.
Flags: needinfo?(jmuizelaar)
Assignee | ||
Comment 15•12 years ago
|
||
Comment on attachment 704226 [details] [diff] [review]
Avoid moving the start location of non-repeating radial gradients
[Approval Request Comment]
Bug caused by (feature/regressing bug #): Not a regression
User impact if declined: Really bad gradient performance on some pages. Without this, we basically denial of service some machines.
Testing completed (on m-c, etc.): It has been on m-c since 1-23 (19 days ago)
Risk to taking this patch (and alternatives if risky): Some gradients will draw wrong. However, this is very easy to back out, and we're more likely to find any problems on release.
String or UUID changes made by this patch: None
Attachment #704226 -
Flags: approval-mozilla-aurora?
Flags: needinfo?(jmuizelaar)
Comment 16•12 years ago
|
||
Comment on attachment 704226 [details] [diff] [review]
Avoid moving the start location of non-repeating radial gradients
Glad to hear this is easy to back out, so let's go ahead with uplift and watch for regressions while 20 is on Beta.
Attachment #704226 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Updated•12 years ago
|
Comment 17•12 years ago
|
||
Updated•12 years ago
|
Updated•12 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•