Fallback to compose shapes as their bounding rectangles. (#4553)

Scenic doesn't currently support arbitrary shaped frames.
This commit is contained in:
amirh 2018-01-16 18:20:18 -08:00 committed by GitHub
parent a1328e7730
commit e1e97b9130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,12 @@ class PhysicalShapeLayer : public ContainerLayer {
frameRRect_ = SkRRect::MakeRect(rect);
} else if (path.isRRect(&frameRRect_)) {
isRect_ = frameRRect_.isRect();
} else {
// Fuchsia's compositor currently only supports rounded rectangle frames.
// For shapes that cannot be represented as a rounded rectangle we
// default to use the bounding rectangle.
// TODO(amirh): fix this once Fuchsia supports arbitrary shaped frames.
frameRRect_ = SkRRect::MakeRect(path.getBounds());
}
}