-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[Impeller] Make matrix image filters work as expected with nested saving layers #40299
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ColdPaleLight
requested review from
chinmaygarde and
bdero
and removed request for
chinmaygarde
March 15, 2023 06:43
bdero
approved these changes
Mar 15, 2023
ColdPaleLight
added
the
autosubmit
Merge PR when tree becomes green via auto submit App
label
Mar 15, 2023
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
engine-flutter-autoroll
added a commit
to engine-flutter-autoroll/flutter
that referenced
this pull request
Mar 15, 2023
…nested saving layers (flutter/engine#40299)
zanderso
pushed a commit
to flutter/flutter
that referenced
this pull request
Mar 15, 2023
…122746) * 3c3cbc738 Manual roll Dart SDK from c766fffb626e to 3b109a04f783 (9 revisions) (flutter/engine#40296) * dee0ae590 [Impeller] Make matrix image filters work as expected with nested saving layers (flutter/engine#40299) * 835759f4c Roll Skia from 4d90ba479527 to 3b9131c65c01 (5 revisions) (flutter/engine#40304) * bbde3a77b Roll Fuchsia Linux SDK from BRE9jdqYpdkbU0j7H... to YaWqKKuj-fAqfpKCm... (flutter/engine#40306) * 1a7e7c468 Roll Dart SDK from 3b109a04f783 to 5c210933cdfe (2 revisions) (flutter/engine#40307) * 66a3324cf Analyze more shaders (flutter/engine#40285) * 405c8513e [Impeller] Improve performance of CupertinoPicker with opacity peephole (flutter/engine#40101) * 9fc3246bf Reland "Make FlutterTest the default test font" (#40188) (flutter/engine#40245) * 3ed9f1236 Reland: "Added wide-gamut color support for `ui.Image.toByteData` and `ui.Image.colorSpace`" (flutter/engine#40312) * e143b309c Bump lower Dart SDK constraints to 3.0 (flutter/engine#40178) * 086b1a022 [impeller] implement GetPositionUVBuffer (flutter/engine#40248) * ec151bf2c Revert Dart SDK to c766fffb626e (flutter/engine#40315)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix flutter/flutter#122674
Based on the previous PR #40171 PR fixes the problem of matrix image filter in the nested saving layers scenario.
The matrix we passed to the matrix image filter before is
xformation_
, which is used to transfer from the local space to the global space. In fact, what we need to pass to the matrix image filter is a matrix that can transfer from the local space to the layer space.Without the patch
With the patch
Pre-launch Checklist
///
).