Closed
Bug 1280656
Opened 9 years ago
Closed 9 years ago
Use Android ViewConfiguration to get max fling velocity.
Categories
(Firefox for Android Graveyard :: Toolbar, defect, P3)
Firefox for Android Graveyard
Toolbar
Tracking
(firefox48 verified, firefox49 verified, firefox50 verified)
VERIFIED
FIXED
Firefox 50
People
(Reporter: rbarker, Assigned: rbarker)
References
Details
Attachments
(1 file, 1 obsolete file)
|
4.38 KB,
patch
|
kats
:
review+
Sylvestre
:
approval-mozilla-aurora+
Sylvestre
:
approval-mozilla-beta+
|
Details | Diff | Splinter Review |
The native Android fling animation should use ViewConfiguration to get the max fling speed.
| Assignee | ||
Updated•9 years ago
|
Assignee: nobody → rbarker
| Assignee | ||
Comment 1•9 years ago
|
||
Attachment #8763259 -
Flags: review?(botond)
Comment 2•9 years ago
|
||
Comment on attachment 8763259 [details] [diff] [review]
0001-Bug-1280656-Use-Android-ViewConfiguration-to-get-max-fling-velocity.-r-16061717-f328aee.patch
Review of attachment 8763259 [details] [diff] [review]:
-----------------------------------------------------------------
::: gfx/layers/apz/src/AndroidAPZ.cpp
@@ +106,5 @@
> if (length > 0.0f) {
> mFlingDirection = velocity / length;
> +
> + if (length > sMaxFlingSpeed) {
> + velocity = mFlingDirection * sMaxFlingSpeed;
You should skip the clamping if sMaxFlingSpeed is 0, like if it couldn't be read properly.
Updated•9 years ago
|
Blocks: 1229462
status-firefox48:
--- → affected
status-firefox49:
--- → affected
status-firefox50:
--- → affected
Priority: -- → P3
| Assignee | ||
Comment 3•9 years ago
|
||
Attachment #8763259 -
Attachment is obsolete: true
Attachment #8763259 -
Flags: review?(botond)
Attachment #8763261 -
Flags: review?(botond)
| Assignee | ||
Updated•9 years ago
|
Attachment #8763261 -
Flags: review?(botond) → review?(bugmail.mozilla)
Comment 4•9 years ago
|
||
(Sorry for the slow response time on reviews. I'm at a C++ standards meeting this week, and while I've been trying to squeeze some time to do some reviews, amidst the evening sessions and impromptu discussions I haven't managed to yet.)
Comment 5•9 years ago
|
||
Comment on attachment 8763261 [details] [diff] [review]
0001-Bug-1280656-Use-Android-ViewConfiguration-to-get-max-fling-velocity.-r-16061717-33eacc9.patch
Review of attachment 8763261 [details] [diff] [review]:
-----------------------------------------------------------------
LGTM, seems pretty straightforward.
Attachment #8763261 -
Flags: review?(bugmail.mozilla) → review+
Pushed by rbarker@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/b9f69e5a6565
Use Android ViewConfiguration to get max fling velocity. r=kats
Comment 7•9 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 50
| Assignee | ||
Comment 9•9 years ago
|
||
(In reply to Kartikaya Gupta (email:kats@mozilla.com) from comment #8)
> Flag for uplift?
I'm not sure. On my (mid to low range) devices it doesn't seem to make much of a difference but I believe on devices with more powerful CPUs, where it is more able to keep up with paint requests, this patch appears to reduce checker boarding a little.
Flags: needinfo?(rbarker)
Comment 10•9 years ago
|
||
Bug 1279433 at least seems to be better, probably because of this. I vote we uplift it. Can you request approval?
Flags: needinfo?(rbarker)
| Assignee | ||
Comment 11•9 years ago
|
||
Comment on attachment 8763261 [details] [diff] [review]
0001-Bug-1280656-Use-Android-ViewConfiguration-to-get-max-fling-velocity.-r-16061717-33eacc9.patch
Approval Request Comment
[Feature/regressing bug #]: Fling velocity exceeds the maximum speed which allows fennec to checker board more easily.
[User impact if declined]: Appears to increase checker boarding
[Describe test coverage new/current, TreeHerder]: just manual testing
[Risks and why]: Minimal. Code prevents the starting velocity of a fling from exceeding a maximum speed.
[String/UUID change made/needed]: none.
Flags: needinfo?(rbarker)
Attachment #8763261 -
Flags: approval-mozilla-beta?
Attachment #8763261 -
Flags: approval-mozilla-aurora?
Comment 12•9 years ago
|
||
Comment on attachment 8763261 [details] [diff] [review]
0001-Bug-1280656-Use-Android-ViewConfiguration-to-get-max-fling-velocity.-r-16061717-33eacc9.patch
OK, improve the situation, taking it.
Should be in 48 beta 6
Attachment #8763261 -
Flags: approval-mozilla-beta?
Attachment #8763261 -
Flags: approval-mozilla-beta+
Attachment #8763261 -
Flags: approval-mozilla-aurora?
Attachment #8763261 -
Flags: approval-mozilla-aurora+
Comment 14•9 years ago
|
||
| bugherder uplift | ||
Comment 15•9 years ago
|
||
| bugherder uplift | ||
Comment 16•9 years ago
|
||
I was able to reproduce this issue consistently on Firefox 48 Beta 4 on Samsung Galaxy Tab S2 (Android 5.0.2).
I am not seeing this issue on Firefox 48 Beta 6, latest Nightly and Aurora, on the same device.
Marking this as verified fixed; we might want to check if this issue still persist on another device, to open up another bug.
Status: RESOLVED → VERIFIED
Comment 17•7 years ago
|
||
Based on comment 16 I will remove the qe-verify flag, thanks.
Flags: qe-verify+
Updated•5 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•