Skip to content

Commit

Permalink
adopt new DlAttributeType enum naming (flutter#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
flar authored and dnfield committed Apr 27, 2022
1 parent 2373da8 commit 2dceced
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions impeller/display_list/display_list_dispatcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ void DisplayListDispatcher::setColorFilter(
return;
}
switch (filter->type()) {
case flutter::DlColorFilter::kBlend:
case flutter::DlColorFilter::kMatrix:
case flutter::DlColorFilter::kSrgbToLinearGamma:
case flutter::DlColorFilter::kLinearToSrgbGamma:
case flutter::DlColorFilter::kUnknown:
case flutter::DlColorFilterType::kBlend:
case flutter::DlColorFilterType::kMatrix:
case flutter::DlColorFilterType::kSrgbToLinearGamma:
case flutter::DlColorFilterType::kLinearToSrgbGamma:
case flutter::DlColorFilterType::kUnknown:
UNIMPLEMENTED;
break;
}
Expand Down Expand Up @@ -127,8 +127,8 @@ void DisplayListDispatcher::setMaskFilter(const flutter::DlMaskFilter* filter) {
return;
}
switch (filter->type()) {
case flutter::DlMaskFilter::kBlur:
case flutter::DlMaskFilter::kUnknown:
case flutter::DlMaskFilterType::kBlur:
case flutter::DlMaskFilterType::kUnknown:
UNIMPLEMENTED;
break;
}
Expand Down

0 comments on commit 2dceced

Please sign in to comment.