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" |
11 #include "GrReorderCommandBuilder.h" | 11 #include "GrReorderCommandBuilder.h" |
12 | 12 |
13 GrCommandBuilder* GrCommandBuilder::Create(GrGpu* gpu, bool reorder) { | 13 GrCommandBuilder* GrCommandBuilder::Create(GrGpu* gpu, bool reorder) { |
14 if (reorder) { | 14 if (reorder) { |
15 return SkNEW_ARGS(GrReorderCommandBuilder, (gpu)); | 15 return SkNEW(GrReorderCommandBuilder); |
16 } else { | 16 } else { |
17 return SkNEW_ARGS(GrInOrderCommandBuilder, (gpu)); | 17 return SkNEW(GrInOrderCommandBuilder); |
18 } | 18 } |
19 } | 19 } |
20 | 20 |
21 GrTargetCommands::Cmd* GrCommandBuilder::recordClear(const SkIRect& rect, | 21 GrTargetCommands::Cmd* GrCommandBuilder::recordClear(const SkIRect& rect, |
22 GrColor color, | 22 GrColor color, |
23 GrRenderTarget* renderTarge
t) { | 23 GrRenderTarget* renderTarge
t) { |
24 SkASSERT(renderTarget); | 24 SkASSERT(renderTarget); |
25 SkASSERT(rect.fLeft <= rect.fRight && rect.fTop <= rect.fBottom); | 25 SkASSERT(rect.fLeft <= rect.fRight && rect.fTop <= rect.fBottom); |
26 | 26 |
27 Clear* clr = GrNEW_APPEND_TO_RECORDER(*this->cmdBuffer(), Clear, (renderTarg
et)); | 27 Clear* clr = GrNEW_APPEND_TO_RECORDER(*this->cmdBuffer(), Clear, (renderTarg
et)); |
(...skipping 30 matching lines...) Expand all 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 } |
OLD | NEW |