mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix one more use of deprecated path fill type API (flutter/engine#14127)
This commit is contained in:
parent
903d6182ea
commit
1cbaa6ddfb
@ -93,7 +93,8 @@ std::ostream& operator<<(std::ostream& os, const SkRRect& r) {
|
||||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream& os, const SkPath& r) {
|
||||
return os << "Valid: " << r.isValid() << ", FillType: " << r.getFillType()
|
||||
return os << "Valid: " << r.isValid()
|
||||
<< ", FillType: " << static_cast<int>(r.getFillType())
|
||||
<< ", Bounds: " << r.getBounds();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user