| Index: src/gpu/batches/GrDiscardBatch.h
|
| diff --git a/src/gpu/batches/GrDiscardBatch.h b/src/gpu/batches/GrDiscardBatch.h
|
| index 8a050a7122ca4e0978104574f05bba6476cdf16a..c13e7327d7fbf6930e0983f5537c99c7fc59ecea 100644
|
| --- a/src/gpu/batches/GrDiscardBatch.h
|
| +++ b/src/gpu/batches/GrDiscardBatch.h
|
| @@ -15,9 +15,11 @@
|
|
|
| class GrDiscardBatch final : public GrBatch {
|
| public:
|
| + DEFINE_BATCH_CLASS_ID
|
| +
|
| GrDiscardBatch(GrRenderTarget* rt)
|
| - : fRenderTarget(rt) {
|
| - this->initClassID<GrDiscardBatch>();
|
| + : INHERITED(ClassID())
|
| + , fRenderTarget(rt) {
|
| fBounds = SkRect::MakeWH(SkIntToScalar(rt->width()), SkIntToScalar(rt->height()));
|
| }
|
|
|
| @@ -43,6 +45,8 @@
|
| }
|
|
|
| GrPendingIOResource<GrRenderTarget, kWrite_GrIOType> fRenderTarget;
|
| +
|
| + typedef GrBatch INHERITED;
|
| };
|
|
|
| #endif
|
|
|