| Index: src/gpu/batches/GrAAStrokeRectBatch.cpp
|
| diff --git a/src/gpu/batches/GrAAStrokeRectBatch.cpp b/src/gpu/batches/GrAAStrokeRectBatch.cpp
|
| index 8c42c9a039431e32f13d87faed4f1cf9642cf213..bbee3f878afd0bfea61021563c34a72522db21b3 100644
|
| --- a/src/gpu/batches/GrAAStrokeRectBatch.cpp
|
| +++ b/src/gpu/batches/GrAAStrokeRectBatch.cpp
|
| @@ -124,8 +124,8 @@ public:
|
| const SkRect& devOutside, const SkRect& devInside)
|
| : INHERITED(ClassID())
|
| , fViewMatrix(viewMatrix) {
|
| - SkASSERT(!devOutside.isEmpty())
|
| - SkASSERT(!devInside.isEmpty())
|
| + SkASSERT(!devOutside.isEmpty());
|
| + SkASSERT(!devInside.isEmpty());
|
|
|
| fGeoData.emplace_back(Geometry{color, devOutside, devOutside, devInside, false});
|
| this->setBounds(devOutside, HasAABloat::kYes, IsZeroArea::kNo);
|
|
|