Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions display_list/display_list_image_filter_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -810,8 +810,9 @@ TEST(DisplayListImageFilter, LocalImageFilterBounds) {
auto sk_local_filter = sk_filters[i]->makeWithLocalMatrix(m);
auto dl_local_filter = dl_filters[i]->makeWithLocalMatrix(m);
if (!sk_local_filter || !dl_local_filter) {
ASSERT_TRUE(!sk_local_filter);
ASSERT_TRUE(!dl_local_filter);
// Allow the SkImageFilter to support at least, but possibly more,
// matrices than DlImageFilter.
ASSERT_TRUE(sk_local_filter || !dl_local_filter);
continue;
}
{
Expand Down