| Index: include/gpu/GrClip.h
|
| diff --git a/include/gpu/GrClip.h b/include/gpu/GrClip.h
|
| index 1cb1a2bcf60a9399da4a356ad5941cdb8a82febc..c74d25d77a3ff61171b24d303bc6d9d790d28c55 100644
|
| --- a/include/gpu/GrClip.h
|
| +++ b/include/gpu/GrClip.h
|
| @@ -44,7 +44,7 @@ public:
|
| fHasStencilClip = true;
|
| if (deviceBounds) {
|
| fDeviceBounds = *deviceBounds;
|
| - SkASSERT(scissor.contains(*deviceBounds))
|
| + SkASSERT(scissor.contains(*deviceBounds));
|
| } else {
|
| fDeviceBounds = SkRect::Make(scissor);
|
| }
|
| @@ -75,7 +75,7 @@ public:
|
| fHasStencilClip = false;
|
| if (deviceBounds) {
|
| fDeviceBounds = *deviceBounds;
|
| - SkASSERT(scissor.contains(*deviceBounds))
|
| + SkASSERT(scissor.contains(*deviceBounds));
|
| } else {
|
| fDeviceBounds = SkRect::Make(scissor);
|
| }
|
|
|