-
Notifications
You must be signed in to change notification settings - Fork 6k
[Impeller] migrate blend tests to DL. #54457
Conversation
@@ -665,7 +665,7 @@ class DlColorFilterImageFilter final : public DlImageFilter { | |||
class DlLocalMatrixImageFilter final : public DlImageFilter { | |||
public: | |||
explicit DlLocalMatrixImageFilter(const SkMatrix& matrix, | |||
std::shared_ptr<DlImageFilter> filter) | |||
std::shared_ptr<const DlImageFilter> filter) |
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.
Without this change I can't pass a composed image filter here
Golden file changes have been found for this pull request. Click here to view and triage (e.g. because this is an intentional change). If you are still iterating on this change and are not ready to resolve the images on the Flutter Gold dashboard, consider marking this PR as a draft pull request above. You will still be able to view image results on the dashboard, commenting will be silenced, and the check will not try to resolve itself until marked ready for review. |
Golden file changes are available for triage from new commit, Click here to view. |
@@ -623,7 +623,7 @@ void DlDispatcherBase::saveLayer(const SkRect& bounds, | |||
? ContentBoundsPromise::kMayClipContents | |||
: ContentBoundsPromise::kContainsContents; | |||
std::optional<Rect> impeller_bounds; | |||
if (!options.content_is_unbounded()) { | |||
if (!options.content_is_unbounded() || options.bounds_from_caller()) { |
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.
found another bug. even if contents are unbounded, we should still treat them as bounded if the caller specified bounds
Golden file changes are available for triage from new commit, Click here to view. |
Golden file changes are available for triage from new commit, Click here to view. |
Since there is no SkMatrix::MakeRotationZ, I change a few of the matricies to be easier to represent. |
…153233) flutter/engine@c11fe48...d409dcd 2024-08-10 [email protected] iOS,docs: Update iOS symbolication docs (flutter/engine#54494) 2024-08-10 [email protected] [iOS] Rename create_{full_,}ios_framework.py (flutter/engine#54493) 2024-08-10 [email protected] [Impeller] migrate blend tests to DL. (flutter/engine#54457) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
…lutter#153233) flutter/engine@c11fe48...d409dcd 2024-08-10 [email protected] iOS,docs: Update iOS symbolication docs (flutter/engine#54494) 2024-08-10 [email protected] [iOS] Rename create_{full_,}ios_framework.py (flutter/engine#54493) 2024-08-10 [email protected] [Impeller] migrate blend tests to DL. (flutter/engine#54457) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
…lutter#153233) flutter/engine@c11fe48...d409dcd 2024-08-10 [email protected] iOS,docs: Update iOS symbolication docs (flutter/engine#54494) 2024-08-10 [email protected] [iOS] Rename create_{full_,}ios_framework.py (flutter/engine#54493) 2024-08-10 [email protected] [Impeller] migrate blend tests to DL. (flutter/engine#54457) If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
Part of flutter/flutter#142054