aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrTextureOpList.h
diff options
context:
space:
mode:
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;
};