aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrRenderTargetOpList.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-14 16:21:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-14 22:08:58 +0000
commit7dae46a6783de5f6bc461870306eb7d648386980 (patch)
treee70780be1a68ef514894859ef7af9d3d8cb6f341 /src/gpu/GrRenderTargetOpList.h
parent25351021a6fddd390273fbc8bbdb84a56865b561 (diff)
Some more batch->op renaming
Change-Id: I5cbdc606170186d2d908d518af0e0fd1094fcf78 Reviewed-on: https://skia-review.googlesource.com/6089 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'src/gpu/GrRenderTargetOpList.h')
-rw-r--r--src/gpu/GrRenderTargetOpList.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gpu/GrRenderTargetOpList.h b/src/gpu/GrRenderTargetOpList.h
index e9611325b2..f65213dd61 100644
--- a/src/gpu/GrRenderTargetOpList.h
+++ b/src/gpu/GrRenderTargetOpList.h
@@ -28,7 +28,7 @@
#include "SkTypes.h"
class GrAuditTrail;
-class GrClearBatch;
+class GrClearOp;
class GrClip;
class GrCaps;
class GrPath;
@@ -160,22 +160,22 @@ private:
sk_sp<GrOp> fOp;
SkRect fClippedBounds;
};
- SkSTArray<256, RecordedOp, true> fRecordedOps;
- GrClearBatch* fLastFullClearOp;
+ SkSTArray<256, RecordedOp, true> fRecordedOps;
+ GrClearOp* fLastFullClearOp;
// The context is only in service of the GrClip, remove once it doesn't need this.
- GrContext* fContext;
- GrGpu* fGpu;
- GrResourceProvider* fResourceProvider;
+ GrContext* fContext;
+ GrGpu* fGpu;
+ GrResourceProvider* fResourceProvider;
- bool fClipOpToBounds;
- int fMaxOpLookback;
- int fMaxOpLookahead;
+ bool fClipOpToBounds;
+ int fMaxOpLookback;
+ int fMaxOpLookahead;
std::unique_ptr<gr_instanced::InstancedRendering> fInstancedRendering;
- int32_t fLastClipStackGenID;
- SkIRect fLastClipStackRect;
- SkIPoint fLastClipOrigin;
+ int32_t fLastClipStackGenID;
+ SkIRect fLastClipStackRect;
+ SkIPoint fLastClipOrigin;
typedef GrOpList INHERITED;
};