Index: src/gpu/GrBatchFlushState.cpp |
diff --git a/src/gpu/GrBatchFlushState.cpp b/src/gpu/GrBatchFlushState.cpp |
index f12066609e1a7a3adf469f140713be70579e7031..52261a18397a79c81492affbea8c7dca15f7ad8f 100644 |
--- a/src/gpu/GrBatchFlushState.cpp |
+++ b/src/gpu/GrBatchFlushState.cpp |
@@ -10,15 +10,14 @@ |
#include "GrBatchAtlas.h" |
#include "GrPipeline.h" |
-GrBatchFlushState::GrBatchFlushState(GrGpu* gpu, GrResourceProvider* resourceProvider, |
- GrBatchToken lastFlushedToken) |
+GrBatchFlushState::GrBatchFlushState(GrGpu* gpu, GrResourceProvider* resourceProvider) |
: fGpu(gpu) |
, fUploader(gpu) |
, fResourceProvider(resourceProvider) |
, fVertexPool(gpu) |
, fIndexPool(gpu) |
- , fCurrentToken(lastFlushedToken) |
- , fLastFlushedToken(lastFlushedToken) {} |
+ , fCurrentToken(0) |
+ , fLastFlushedToken(0) {} |
void* GrBatchFlushState::makeVertexSpace(size_t vertexSize, int vertexCount, |
const GrVertexBuffer** buffer, int* startVertex) { |