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

Commit 81c3fe4

Browse files
author
jonahwilliams
committed
++
1 parent ca184ba commit 81c3fe4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

impeller/aiks/aiks_unittests.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2134,9 +2134,12 @@ TEST_P(AiksTest, CanRenderClippedLayers) {
21342134
canvas.DrawRect(Rect::MakeSize(Size{400, 400}), {.color = Color::White()});
21352135
// Fill the layer with green, but do so with a color blend that can't be
21362136
// collapsed into the parent pass.
2137+
// TODO(jonahwilliams): this blend mode was changed from color burn to
2138+
// hardlight to work around https://github.com/flutter/flutter/issues/136554
2139+
// .
21372140
canvas.DrawRect(
21382141
Rect::MakeSize(Size{400, 400}),
2139-
{.color = Color::Green(), .blend_mode = BlendMode::kColorBurn});
2142+
{.color = Color::Green(), .blend_mode = BlendMode::kHardLight});
21402143
}
21412144

21422145
ASSERT_TRUE(OpenPlaygroundHere(canvas.EndRecordingAsPicture()));

0 commit comments

Comments
 (0)