-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow gradient interpolation hints to influence color-stop fixup #28572
Conversation
Heads up! This PR modifies the following files:
|
@bors-servo try=wpt-2020 Adding this since I modified layout_2020 (https://github.com/servo/servo/wiki/Layout-2020) EDIT: I guess I can't do this. That link says to do it though so I guess someone else will have to approve it. I've done the tests locally and they seem to be fine |
@Bryce-MW: 🔑 Insufficient privileges: not in try users |
1 similar comment
@Bryce-MW: 🔑 Insufficient privileges: not in try users |
95140e5
to
1f2c1cb
Compare
1f2c1cb
to
4c5dd52
Compare
@bors-servo try |
🔨 Triggering try run (#5800530349) with platform=all and layout=all |
Test results for linux-wpt-layout-2020 from try job (#5800530349): Flaky unexpected result (1)
|
Test results for linux-wpt-layout-2013 from try job (#5800530349): Flaky unexpected result (27)
Stable unexpected results that are known to be intermittent (10)
|
✨ Try run (#5800530349) succeeded. |
@emilio Would you mind taking a look at this one to see if the changes to style are something that you'd want in Gecko? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So the style changes are only needed so that components/layout/display_list/gradient.rs
doesn't discard the interpolation hints. That seems like a smell.
It seems like instead convert_gradient_stops
could work with GradientItem
directly, and then style doesn't need to change at all.
I think this PR might be abandoned? I doesn't really change test results as far as I can see and it needs to be reworked. I'm going to close for now, but @Bryce-MW please feel free to reopen if you are still working on this. Servo is more active now so it's quite likely that this can land with a little bit of TLC. |
I gave up on trying to get this merged a long time ago. I haven't been actively working on gradients for a while but if I did come back I'd likely start over rather than reworking this PR. Thanks! |
I am working on the easing gradients feature for CSS. I want to eventually implement that in Servo as a demonstration since Servo is a bit easier (in my opinion) to modify than Firefox or Chromium. However, at this point, Servo does not even support gradient interpolation hints so I am working towards that support. I think that it will require modifications to webrender if we don't want to use Firefox's approximation. I am happy to implement that approximation though if we want something that works now.
This pull request just makes it so that the interpolation hints influence the position of unpositioned stops. Specifically, on my test website, the first and third gradients look the same prior to this fix and they look correct after this fix. It is also important to note that the white colour-stop of the first gradient should be further to the right than the white colour-stop of the second gradient. There's a bit more discussion about this effect here.
I've implemented this in both layout_2017 and layout_2020. I had to change a few things in 2017 that I don't fully understand so I would appreciate if someone could make sure that I didn't cause a subtle bug or performance issue. Especially around line 88 and 116 of
components/layout/display_list/gradient.rs
../mach build -d
does not report any errors (and./mach build -d --with-layout-2020
)./mach test-tidy
does not report any errors