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: eee8aeb953df
Choose a base ref
...
head repository: flutter/engine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c6395d920786
Choose a head ref
  • 2 commits
  • 14 files changed
  • 2 contributors

Commits on Dec 4, 2023

  1. Roll Skia from 540d76ea74f8 to db4a29e0689e (2 revisions) (#48633)

    https://skia.googlesource.com/skia.git/+log/540d76ea74f8..db4a29e0689e
    
    2023-12-04 briansalomon@gmail.com Fix DawnBuffer map at creation on WebGPU.
    2023-12-04 michaelludwig@google.com [skif] Check AutoSurface for empty bounds
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/skia-flutter-autoroll
    Please CC brianosman@google.com,matanl@google.com,rmistry@google.com on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Skia: https://bugs.chromium.org/p/skia/issues/entry
    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
    skia-flutter-autoroll authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    be9ca50 View commit details
    Browse the repository at this point in the history
  2. Add support for exposing accessibility identifier as resource-id on A…

    …ndroid (#47961)
    
    Accompanying framework PR: flutter/flutter#138331
    
    This PR implements support for exposing `SemanticsProperties.identifier` on Android as `resource-id`. Mainly targeted at flutter/flutter#17988. Would also fix https://github.com/flutter/flutter/issues/issues/137735 but it was marked as duplicate. Anyway, there's a lot of context in that issue.
    
    This PR requires changing the `SemanticsUpdateBuilder` interface (defined in engine) that framework depends on, so it requires introducing a temporary API ([see question I asked on Discord](https://discord.com/channels/608014603317936148/608018585025118217/1174845658033819729) to learn more about this approach).
    
    Steps:
    **part 1: [engine] add `SemanticsUpdateBuilderNew`** <-- we are here
    part 2: [flutter] use `SemanticsUpdateBuilderNew`
    part 3: [engine] update `SemanticsUpdateBuilder` to be the same as `SemanticsUpdateBuilderNew`*
    part 4: [flutter] use (now updated) `SemanticsUpdateBuilder` again.
    part 5: [engine] remove `SemanticsBuilderNew`
    
    I'd like to do these changes first, and only then continue with [the proper framework PR](flutter/flutter#138331).
    
    *More specifically: update `SemanticsUpdateBuilder.updateNode()` to be the same as `SemanticsUpdateBuilderNew.updateNode()`. Number of arguments that function takes is the only change.
    
    [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
    bartekpacia authored Dec 4, 2023
    Configuration menu
    Copy the full SHA
    c6395d9 View commit details
    Browse the repository at this point in the history
Loading