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

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

Issue 1287973003: Check for xfer barriers in GrBatch, auto-issue barriers in GrGpu (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address comment 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/GrCommandBuilder.h ('k') | src/gpu/GrDefaultPathRenderer.cpp » ('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 "GrCommandBuilder.h" 8 #include "GrCommandBuilder.h"
9 9
10 #include "GrInOrderCommandBuilder.h" 10 #include "GrInOrderCommandBuilder.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 GrTargetCommands::Cmd* GrCommandBuilder::recordCopySurface(GrSurface* dst, 58 GrTargetCommands::Cmd* GrCommandBuilder::recordCopySurface(GrSurface* dst,
59 GrSurface* src, 59 GrSurface* src,
60 const SkIRect& srcRec t, 60 const SkIRect& srcRec t,
61 const SkIPoint& dstPo int) { 61 const SkIPoint& dstPo int) {
62 CopySurface* cs = GrNEW_APPEND_TO_RECORDER(*this->cmdBuffer(), CopySurface, (dst, src)); 62 CopySurface* cs = GrNEW_APPEND_TO_RECORDER(*this->cmdBuffer(), CopySurface, (dst, src));
63 cs->fSrcRect = srcRect; 63 cs->fSrcRect = srcRect;
64 cs->fDstPoint = dstPoint; 64 cs->fDstPoint = dstPoint;
65 GrBATCH_INFO("Recording copysurface %d\n", cs->uniqueID()); 65 GrBATCH_INFO("Recording copysurface %d\n", cs->uniqueID());
66 return cs; 66 return cs;
67 } 67 }
68
69 GrTargetCommands::Cmd*
70 GrCommandBuilder::recordXferBarrierIfNecessary(const GrPipeline& pipeline,
71 const GrCaps& caps) {
72 const GrXferProcessor& xp = *pipeline.getXferProcessor();
73 GrRenderTarget* rt = pipeline.getRenderTarget();
74
75 GrXferBarrierType barrierType;
76 if (!xp.willNeedXferBarrier(rt, caps, &barrierType)) {
77 return NULL;
78 }
79
80 XferBarrier* xb = GrNEW_APPEND_TO_RECORDER(*this->cmdBuffer(), XferBarrier, (rt));
81 xb->fBarrierType = barrierType;
82 GrBATCH_INFO("Recording xfer barrier %d\n", xb->uniqueID());
83 return xb;
84 }
OLDNEW
« no previous file with comments | « src/gpu/GrCommandBuilder.h ('k') | src/gpu/GrDefaultPathRenderer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698