diff --git a/impeller/entity/contents/filters/blend_filter_contents.cc b/impeller/entity/contents/filters/blend_filter_contents.cc index c17da0c66d0ba..93550da403e4c 100644 --- a/impeller/entity/contents/filters/blend_filter_contents.cc +++ b/impeller/entity/contents/filters/blend_filter_contents.cc @@ -728,8 +728,7 @@ std::optional BlendFilterContents::RenderFilter( } if (blend_mode_ <= Entity::kLastPipelineBlendMode) { - if (inputs.size() == 1 && foreground_color_.has_value() && - GetAbsorbOpacity() == ColorFilterContents::AbsorbOpacity::kYes) { + if (inputs.size() == 1 && foreground_color_.has_value()) { return CreateForegroundPorterDuffBlend( inputs[0], renderer, entity, coverage, foreground_color_.value(), blend_mode_, GetAlpha(), GetAbsorbOpacity()); @@ -739,8 +738,7 @@ std::optional BlendFilterContents::RenderFilter( } if (blend_mode_ <= Entity::kLastAdvancedBlendMode) { - if (inputs.size() == 1 && foreground_color_.has_value() && - GetAbsorbOpacity() == ColorFilterContents::AbsorbOpacity::kYes) { + if (inputs.size() == 1 && foreground_color_.has_value()) { return CreateForegroundAdvancedBlend( inputs[0], renderer, entity, coverage, foreground_color_.value(), blend_mode_, GetAlpha(), GetAbsorbOpacity());