| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 | 8 |
| 9 #include "GrStencilAndCoverPathRenderer.h" | 9 #include "GrStencilAndCoverPathRenderer.h" |
| 10 #include "GrCaps.h" | 10 #include "GrCaps.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 SkASSERT(path->isEqualTo(skPath, style)); | 64 SkASSERT(path->isEqualTo(skPath, style)); |
| 65 } | 65 } |
| 66 return path.release(); | 66 return path.release(); |
| 67 } | 67 } |
| 68 | 68 |
| 69 void GrStencilAndCoverPathRenderer::onStencilPath(const StencilPathArgs& args) { | 69 void GrStencilAndCoverPathRenderer::onStencilPath(const StencilPathArgs& args) { |
| 70 GR_AUDIT_TRAIL_AUTO_FRAME(args.fDrawContext->auditTrail(), | 70 GR_AUDIT_TRAIL_AUTO_FRAME(args.fDrawContext->auditTrail(), |
| 71 "GrStencilAndCoverPathRenderer::onStencilPath"); | 71 "GrStencilAndCoverPathRenderer::onStencilPath"); |
| 72 | 72 |
| 73 GrPaint paint; | 73 GrPaint paint; |
| 74 paint.setXPFactory(GrDisableColorXPFactory::Create()); | 74 SkSafeUnref(paint.setXPFactory(GrDisableColorXPFactory::Create())); |
| 75 paint.setAntiAlias(args.fIsAA); | 75 paint.setAntiAlias(args.fIsAA); |
| 76 | 76 |
| 77 GrPipelineBuilder pipelineBuilder(paint, args.fDrawContext->isUnifiedMultisa
mpled()); | 77 GrPipelineBuilder pipelineBuilder(paint, args.fDrawContext->isUnifiedMultisa
mpled()); |
| 78 pipelineBuilder.setRenderTarget(args.fDrawContext->accessRenderTarget()); | 78 pipelineBuilder.setRenderTarget(args.fDrawContext->accessRenderTarget()); |
| 79 | 79 |
| 80 SkASSERT(!args.fPath->isInverseFillType()); | 80 SkASSERT(!args.fPath->isInverseFillType()); |
| 81 SkAutoTUnref<GrPath> path(get_gr_path(fResourceProvider, *args.fPath, GrStyl
e::SimpleFill())); | 81 SkAutoTUnref<GrPath> path(get_gr_path(fResourceProvider, *args.fPath, GrStyl
e::SimpleFill())); |
| 82 args.fDrawContext->drawContextPriv().stencilPath(pipelineBuilder, | 82 args.fDrawContext->drawContextPriv().stencilPath(pipelineBuilder, |
| 83 *args.fClip, | 83 *args.fClip, |
| 84 *args.fViewMatrix, | 84 *args.fViewMatrix, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 if (args.fAntiAlias) { | 184 if (args.fAntiAlias) { |
| 185 SkASSERT(args.fDrawContext->isStencilBufferMultisampled()); | 185 SkASSERT(args.fDrawContext->isStencilBufferMultisampled()); |
| 186 pipelineBuilder.enableState(GrPipelineBuilder::kHWAntialias_Flag); | 186 pipelineBuilder.enableState(GrPipelineBuilder::kHWAntialias_Flag); |
| 187 } | 187 } |
| 188 | 188 |
| 189 args.fDrawContext->drawBatch(pipelineBuilder, *args.fClip, batch); | 189 args.fDrawContext->drawBatch(pipelineBuilder, *args.fClip, batch); |
| 190 } | 190 } |
| 191 | 191 |
| 192 return true; | 192 return true; |
| 193 } | 193 } |
| OLD | NEW |