Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: src/gpu/GrDrawTarget.cpp

Issue 1386463004: Incrementally flush GrDrawTarget (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixed Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/GrDrawTarget.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrDrawTarget.cpp
diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
index e7c1c8b5c14a93733bfca40cd8a7b99a82f7b4dd..1edb48c02823a42ea909cd0960214e4f77ea7947 100644
--- a/src/gpu/GrDrawTarget.cpp
+++ b/src/gpu/GrDrawTarget.cpp
@@ -35,8 +35,9 @@
GrDrawTarget::GrDrawTarget(GrGpu* gpu, GrResourceProvider* resourceProvider)
: fGpu(SkRef(gpu))
, fResourceProvider(resourceProvider)
+ , fFlushState(fGpu, fResourceProvider, 0)
, fFlushing(false)
- , fLastFlushToken(0) {
+ , fFirstUnpreparedBatch(0) {
// TODO: Stop extracting the context (currently needed by GrClipMaskManager)
fContext = fGpu->getContext();
fClipMaskManager.reset(new GrClipMaskManager(this));
@@ -117,29 +118,29 @@ void GrDrawTarget::flush() {
}
fFlushing = true;
- GrBatchFlushState flushState(fGpu, fResourceProvider, fLastFlushToken);
-
// Loop over all batches and generate geometry
- for (int i = 0; i < fBatches.count(); ++i) {
- fBatches[i]->prepare(&flushState);
+ for (; fFirstUnpreparedBatch < fBatches.count(); ++fFirstUnpreparedBatch) {
+ fBatches[fFirstUnpreparedBatch]->prepare(&fFlushState);
}
// Upload all data to the GPU
- flushState.preIssueDraws();
+ fFlushState.preIssueDraws();
// Draw all the generated geometry.
for (int i = 0; i < fBatches.count(); ++i) {
- fBatches[i]->draw(&flushState);
+ fBatches[i]->draw(&fFlushState);
}
- fLastFlushToken = flushState.lastFlushedToken();
+ SkASSERT(fFlushState.lastFlushedToken() == fFlushState.currentToken());
+ this->reset();
fFlushing = false;
- this->reset();
}
void GrDrawTarget::reset() {
+ fFirstUnpreparedBatch = 0;
fBatches.reset();
+ fFlushState.reset();
}
void GrDrawTarget::drawBatch(const GrPipelineBuilder& pipelineBuilder, GrDrawBatch* batch) {
@@ -434,6 +435,10 @@ void GrDrawTarget::recordBatch(GrBatch* batch) {
GrBATCH_INFO("\t\tFirstBatch\n");
}
fBatches.push_back().reset(SkRef(batch));
+ if (fBatches.count() > kMaxLookback) {
+ SkASSERT(fBatches.count() - kMaxLookback - fFirstUnpreparedBatch == 1);
+ fBatches[fFirstUnpreparedBatch++]->prepare(&fFlushState);
+ }
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « src/gpu/GrDrawTarget.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698