commit | 385fe4d4b62d7d1dd76116dd570df3290a2f487b | [log] [tgz] |
---|---|---|
author | halcanary <halcanary@google.com> | Wed Aug 26 13:07:48 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Wed Aug 26 13:07:49 2015 -0700 |
tree | 53d982ff238828331e86acd44071a44162a8688c | |
parent | 5015176adf046ef906a2313b6e6b64b72cc84898 [diff] [blame] |
Style Change: SkNEW->new; SkDELETE->delete DOCS_PREVIEW= https://skia.org/?cl=1316123003 Review URL: https://codereview.chromium.org/1316123003
diff --git a/src/gpu/GrPathProcessor.cpp b/src/gpu/GrPathProcessor.cpp index b372adc..3a5ab44 100644 --- a/src/gpu/GrPathProcessor.cpp +++ b/src/gpu/GrPathProcessor.cpp
@@ -84,5 +84,5 @@ GrGLPrimitiveProcessor* GrPathProcessor::createGLInstance(const GrBatchTracker& bt, const GrGLSLCaps& caps) const { SkASSERT(caps.pathRenderingSupport()); - return SkNEW_ARGS(GrGLPathProcessor, (*this, bt)); + return new GrGLPathProcessor(*this, bt); }