| OLD | NEW |
| 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 Loading... |
| 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 } | |
| OLD | NEW |