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

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

Issue 1261033002: Rename GrInOrderDrawBuffer to GrBufferedDrawTarget (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
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 "GrInOrderDrawBuffer.h" 10 #include "GrBufferedDrawTarget.h"
11 11
12 void GrTargetCommands::reset() { 12 void GrTargetCommands::reset() {
13 fCmdBuffer.reset(); 13 fCmdBuffer.reset();
14 fBatchTarget.reset(); 14 fBatchTarget.reset();
15 } 15 }
16 16
17 void GrTargetCommands::flush(GrInOrderDrawBuffer* iodb) { 17 void GrTargetCommands::flush(GrBufferedDrawTarget* iodb) {
18 if (fCmdBuffer.empty()) { 18 if (fCmdBuffer.empty()) {
19 return; 19 return;
20 } 20 }
21 21
22 GrGpu* gpu = iodb->getGpu(); 22 GrGpu* gpu = iodb->getGpu();
23 23
24 // Loop over all batches and generate geometry 24 // Loop over all batches and generate geometry
25 CmdBuffer::Iter genIter(fCmdBuffer); 25 CmdBuffer::Iter genIter(fCmdBuffer);
26 while (genIter.next()) { 26 while (genIter.next()) {
27 if (Cmd::kDrawBatch_CmdType == genIter->type()) { 27 if (Cmd::kDrawBatch_CmdType == genIter->type()) {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 gpu->clearStencilClip(fRect, fInsideClip, this->renderTarget()); 99 gpu->clearStencilClip(fRect, fInsideClip, this->renderTarget());
100 } 100 }
101 101
102 void GrTargetCommands::CopySurface::execute(GrGpu* gpu) { 102 void GrTargetCommands::CopySurface::execute(GrGpu* gpu) {
103 gpu->copySurface(this->dst(), this->src(), fSrcRect, fDstPoint); 103 gpu->copySurface(this->dst(), this->src(), fSrcRect, fDstPoint);
104 } 104 }
105 105
106 void GrTargetCommands::XferBarrier::execute(GrGpu* gpu) { 106 void GrTargetCommands::XferBarrier::execute(GrGpu* gpu) {
107 gpu->xferBarrier(fRenderTarget.get(), fBarrierType); 107 gpu->xferBarrier(fRenderTarget.get(), fBarrierType);
108 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698