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

Side by Side Diff: src/gpu/batches/GrStencilAndCoverPathRenderer.cpp

Issue 2037243002: More Unref GrXPFactory. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 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/batches/GrMSAAPathRenderer.cpp ('k') | no next file » | 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 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
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
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 }
OLDNEW
« no previous file with comments | « src/gpu/batches/GrMSAAPathRenderer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698