aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrTextureOpList.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2016-12-01 09:36:50 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-01 15:12:53 +0000
commit25a880960a9a689a745a01071ecba3fe494b5940 (patch)
treeebc0576bf054ed6a1ea63e2a2034cc8e19374543 /src/gpu/GrTextureOpList.h
parent7c3e7180948766321c51d165737555e78910de51 (diff)
Rename GrBatch to GrOp
Change-Id: I27b6324f8040899fafeda23ca524bc54a4dbf090 Reviewed-on: https://skia-review.googlesource.com/5392 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
Diffstat (limited to 'src/gpu/GrTextureOpList.h')
-rw-r--r--src/gpu/GrTextureOpList.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gpu/GrTextureOpList.h b/src/gpu/GrTextureOpList.h
index 7674184890..934c4b0211 100644
--- a/src/gpu/GrTextureOpList.h
+++ b/src/gpu/GrTextureOpList.h
@@ -13,8 +13,8 @@
#include "SkTArray.h"
class GrAuditTrail;
-class GrBatch;
class GrGpu;
+class GrOp;
class GrTextureProxy;
struct SkIPoint;
struct SkIRect;
@@ -60,10 +60,10 @@ public:
SkDEBUGCODE(void dump() const override;)
private:
- void recordBatch(GrBatch*);
+ void recordBatch(GrOp*);
- SkSTArray<2, sk_sp<GrBatch>, true> fRecordedBatches;
- GrGpu* fGpu;
+ SkSTArray<2, sk_sp<GrOp>, true> fRecordedBatches;
+ GrGpu* fGpu;
typedef GrOpList INHERITED;
};