aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches/GrTestBatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/batches/GrTestBatch.h')
-rw-r--r--src/gpu/batches/GrTestBatch.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gpu/batches/GrTestBatch.h b/src/gpu/batches/GrTestBatch.h
index 02881c9668..085b184a28 100644
--- a/src/gpu/batches/GrTestBatch.h
+++ b/src/gpu/batches/GrTestBatch.h
@@ -50,8 +50,7 @@ public:
}
protected:
- GrTestBatch(uint32_t classID, const GrGeometryProcessor* gp, const SkRect& bounds)
- : INHERITED(classID) {
+ GrTestBatch(const GrGeometryProcessor* gp, const SkRect& bounds) {
fGeometryProcessor.reset(SkRef(gp));
this->setBounds(bounds);
@@ -83,8 +82,6 @@ private:
SkAutoTUnref<const GrGeometryProcessor> fGeometryProcessor;
BatchTracker fBatch;
-
- typedef GrVertexBatch INHERITED;
};
#endif