| 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 #ifndef GrImmediateDrawTarget_DEFINED | 8 #ifndef GrImmediateDrawTarget_DEFINED |
| 9 #define GrImmediateDrawTarget_DEFINED | 9 #define GrImmediateDrawTarget_DEFINED |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 PathTransformType, | 60 PathTransformType, |
| 61 int count, | 61 int count, |
| 62 const GrStencilSettings&, | 62 const GrStencilSettings&, |
| 63 const PipelineInfo&) override { | 63 const PipelineInfo&) override { |
| 64 SkFAIL("Only batch implemented\n"); | 64 SkFAIL("Only batch implemented\n"); |
| 65 } | 65 } |
| 66 void onClear(const SkIRect* rect, | 66 void onClear(const SkIRect* rect, |
| 67 GrColor color, | 67 GrColor color, |
| 68 bool canIgnoreRect, | 68 bool canIgnoreRect, |
| 69 GrRenderTarget* renderTarget) override; | 69 GrRenderTarget* renderTarget) override; |
| 70 void onCopySurface(GrSurface* dst, |
| 71 GrSurface* src, |
| 72 const SkIRect& srcRect, |
| 73 const SkIPoint& dstPoint) override; |
| 70 | 74 |
| 71 bool isIssued(uint32_t drawID) override { return drawID != fDrawID; } | 75 bool isIssued(uint32_t drawID) override { return drawID != fDrawID; } |
| 72 | 76 |
| 73 bool SK_WARN_UNUSED_RESULT setupPipelineAndShouldDraw(GrPipeline*, | 77 bool SK_WARN_UNUSED_RESULT setupPipelineAndShouldDraw(GrPipeline*, |
| 74 const GrDrawTarget::Pi
pelineInfo&); | 78 const GrDrawTarget::Pi
pelineInfo&); |
| 75 | 79 |
| 76 void recordXferBarrierIfNecessary(const GrPipeline*); | 80 void recordXferBarrierIfNecessary(const GrPipeline*); |
| 77 | 81 |
| 78 GrBatchTarget fBatchTarget; | 82 GrBatchTarget fBatchTarget; |
| 79 uint32_t fDrawID; | 83 uint32_t fDrawID; |
| 80 | 84 |
| 81 typedef GrClipTarget INHERITED; | 85 typedef GrClipTarget INHERITED; |
| 82 }; | 86 }; |
| 83 | 87 |
| 84 #endif | 88 #endif |
| OLD | NEW |