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

Commits on Mar 28, 2024

  1. Reland: [Impeller] adds a plus advanced blend for f16 pixel formats (#…

    …51756)
    
    Relands #51589
    
    The fix is in 74397bc. I couldn't
    figure out how to get a test in the engine to cover it. The test is in
    the devicelab.
    
    Here's what I attempted:
    ```c++
    TEST_P(AiksTest, BlendModePlusAlphaColorFilterAlphaWideGamut) {
      if (GetParam() != PlaygroundBackend::kMetal) {
        GTEST_SKIP_("This backend doesn't yet support wide gamut.");
      }
      EXPECT_EQ(GetContext()->GetCapabilities()->GetDefaultColorFormat(),
                PixelFormat::kR16G16B16A16Float);
    
      Canvas canvas;
      canvas.Scale(GetContentScale());
      canvas.DrawPaint({.color = Color(0.1, 0.2, 0.1, 0.5)});
      canvas.SaveLayer({
          .color_filter = ColorFilter::MakeBlend(BlendMode::kPlus,
                                                 Color(Vector4{1, 0, 0, 0.5})),
      });
      Paint paint;
      paint.color = Color(1, 0, 0, 0.5);
      canvas.DrawRect(Rect::MakeXYWH(100, 100, 400, 400), paint);
      paint.color = Color::White();
      canvas.Restore();
      ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture()));
    }
    ```
    
    ## Pre-launch Checklist
    
    - [x] I read the [Contributor Guide] and followed the process outlined
    there for submitting PRs.
    - [x] I read the [Tree Hygiene] wiki page, which explains my
    responsibilities.
    - [x] I read and followed the [Flutter Style Guide] and the [C++,
    Objective-C, Java style guides].
    - [x] I listed at least one issue that this PR fixes in the description
    above.
    - [x] I added new tests to check the change I am making or feature I am
    adding, or the PR is [test-exempt]. See [testing the engine] for
    instructions on writing and running engine tests.
    - [x] I updated/added relevant documentation (doc comments with `///`).
    - [x] I signed the [CLA].
    - [x] All existing and new tests are passing.
    
    If you need help, consider asking for advice on the #hackers-new channel
    on [Discord].
    
    <!-- Links -->
    [Contributor Guide]:
    https://github.com/flutter/flutter/wiki/Tree-hygiene#overview
    [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene
    [test-exempt]:
    https://github.com/flutter/flutter/wiki/Tree-hygiene#tests
    [Flutter Style Guide]:
    https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
    [C++, Objective-C, Java style guides]:
    https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
    [testing the engine]:
    https://github.com/flutter/flutter/wiki/Testing-the-engine
    [CLA]: https://cla.developers.google.com/
    [flutter/tests]: https://github.com/flutter/tests
    [breaking change policy]:
    https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes
    [Discord]: https://github.com/flutter/flutter/wiki/Chat
    gaaclarke authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    b50789f View commit details
    Browse the repository at this point in the history
  2. Remove Android API v33 tests from CI. (#51751)

    Closes flutter/flutter#144064.
    
    From a conversation with @camsim99 on Discord:
    
    > Ah this was to debug that missing emulator issue (flutter/flutter#137947) that Ricardo and I were seeing. We wanted to see if it was specific to the API 34, and if so, escalate the issue internally. @ricardoamador Would you like to keep running the tests with API 33? You mentioned you have found a workaround, and the test runs seem to not have yielded any evidence against API 34.
    matanlurey authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    a8338a4 View commit details
    Browse the repository at this point in the history
  3. Remove --verbose from clang_tidy execution on CI. (#51760)

    Closes flutter/flutter#145926.
    
    This was likely left on by accident (if not, we should utilize `FLUTTER_LOGS_DIR` instead of this flag).
    
    /cc @zanderso
    matanlurey authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    1c08774 View commit details
    Browse the repository at this point in the history
  4. Test that clangd --check works at HEAD. (#50901)

    Closes flutter/flutter#141641.
    
    Basically, this should verify "it's possible to use VSCode+LSC, at least in theory".
    
    I'm open to writing a test, but given it _is_ a test I'm less sure it's valuable. Feel free to push back.
    matanlurey authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    b917b24 View commit details
    Browse the repository at this point in the history
Loading