| Index: src/gpu/batches/GrVertexBatch.h
|
| diff --git a/src/gpu/batches/GrVertexBatch.h b/src/gpu/batches/GrVertexBatch.h
|
| index b868962411a7fd32e73df3fecfa8f0e34f605ef5..0ff5ac18bc316c1204436f28c2bc3f1c51b6a4f1 100644
|
| --- a/src/gpu/batches/GrVertexBatch.h
|
| +++ b/src/gpu/batches/GrVertexBatch.h
|
| @@ -26,9 +26,6 @@ public:
|
|
|
| GrVertexBatch();
|
|
|
| - void prepareDraws(GrBatchFlushState* state);
|
| - void issueDraws(GrBatchFlushState* state);
|
| -
|
| protected:
|
| /** Helper for rendering instances using an instanced index index buffer. This class creates the
|
| space for the vertices and flushes the draws to the batch target. */
|
| @@ -65,6 +62,9 @@ protected:
|
| };
|
|
|
| private:
|
| + void onPrepare(GrBatchFlushState* state) final;
|
| + void onDraw(GrBatchFlushState* state) final;
|
| +
|
| virtual void onPrepareDraws(Target*) = 0;
|
|
|
| // A set of contiguous draws with no inline uploads between them that all use the same
|
|
|