Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/engine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bd58d2b2d655
Choose a base ref
...
head repository: flutter/engine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 69f2d9610a18
Choose a head ref
  • 7 commits
  • 11 files changed
  • 4 contributors

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    6c1f46c View commit details
    Browse the repository at this point in the history
  2. Reland "Add host_profile_arm64 and host_release_arm64 local engine co…

    …nfigurations." (#52633)
    
    Adds --no-lto.
    
    This reverts commit 1fe835b.
    chinmaygarde authored May 8, 2024
    Configuration menu
    Copy the full SHA
    eafdd2f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    45ddb29 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3fb0011 View commit details
    Browse the repository at this point in the history
  5. Fix UIVisualEffectView leak in platform view filter (#52591)

    I found this while migrating `FlutterPlatformViews_Internal.mm` to ARC #52535.  I'll land this first.
    
    ```objc
      if (_backdropFilterView != visualEffectView) {
        _backdropFilterView = [visualEffectView retain];
      }
    ```
    should instead be something like:
    ```objc
      if (_backdropFilterView != visualEffectView) {
        id oldBackdropFilterView = _backdropFilterView;
        _backdropFilterView = [visualEffectView retain];
        [oldBackdropFilterView release];
      }
    ```
    But that's already what the built-in MRC `nonatomic, retain` property setter does, so use that instead.
    
    Added a test that passes on this PR and fails on main.
    jmagman authored May 8, 2024
    Configuration menu
    Copy the full SHA
    dc6e438 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ea962d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    69f2d96 View commit details
    Browse the repository at this point in the history
Loading