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

Side by Side Diff: src/gpu/GrTargetCommands.cpp

Issue 1278643006: Make GrBatch carry its own GrPipeline (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « src/gpu/GrTargetCommands.h ('k') | src/gpu/batches/GrBatch.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "GrTargetCommands.h" 8 #include "GrTargetCommands.h"
9 9
10 #include "GrBufferedDrawTarget.h" 10 #include "GrBufferedDrawTarget.h"
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 24
25 GrGpu* gpu = bufferedDrawTarget->getGpu(); 25 GrGpu* gpu = bufferedDrawTarget->getGpu();
26 26
27 // Loop over all batches and generate geometry 27 // Loop over all batches and generate geometry
28 CmdBuffer::Iter genIter(fCmdBuffer); 28 CmdBuffer::Iter genIter(fCmdBuffer);
29 while (genIter.next()) { 29 while (genIter.next()) {
30 if (Cmd::kDrawBatch_CmdType == genIter->type()) { 30 if (Cmd::kDrawBatch_CmdType == genIter->type()) {
31 DrawBatch* db = reinterpret_cast<DrawBatch*>(genIter.get()); 31 DrawBatch* db = reinterpret_cast<DrawBatch*>(genIter.get());
32 fBatchTarget.resetNumberOfDraws(); 32 fBatchTarget.resetNumberOfDraws();
33 db->fBatch->generateGeometry(&fBatchTarget); 33 db->batch()->generateGeometry(&fBatchTarget);
34 db->fBatch->setNumberOfDraws(fBatchTarget.numberOfDraws()); 34 db->batch()->setNumberOfDraws(fBatchTarget.numberOfDraws());
35 } 35 }
36 } 36 }
37 37
38 fBatchTarget.preFlush(); 38 fBatchTarget.preFlush();
39 39
40 CmdBuffer::Iter iter(fCmdBuffer); 40 CmdBuffer::Iter iter(fCmdBuffer);
41 41
42 while (iter.next()) { 42 while (iter.next()) {
43 GrGpuTraceMarker newMarker("", -1); 43 GrGpuTraceMarker newMarker("", -1);
44 SkString traceString; 44 SkString traceString;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 gpu->clearStencilClip(fRect, fInsideClip, this->renderTarget()); 102 gpu->clearStencilClip(fRect, fInsideClip, this->renderTarget());
103 } 103 }
104 104
105 void GrTargetCommands::CopySurface::execute(GrGpu* gpu) { 105 void GrTargetCommands::CopySurface::execute(GrGpu* gpu) {
106 gpu->copySurface(this->dst(), this->src(), fSrcRect, fDstPoint); 106 gpu->copySurface(this->dst(), this->src(), fSrcRect, fDstPoint);
107 } 107 }
108 108
109 void GrTargetCommands::XferBarrier::execute(GrGpu* gpu) { 109 void GrTargetCommands::XferBarrier::execute(GrGpu* gpu) {
110 gpu->xferBarrier(fRenderTarget.get(), fBarrierType); 110 gpu->xferBarrier(fRenderTarget.get(), fBarrierType);
111 } 111 }
OLDNEW
« no previous file with comments | « src/gpu/GrTargetCommands.h ('k') | src/gpu/batches/GrBatch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698