diff options
Diffstat (limited to 'src/gpu/ccpr')
-rw-r--r-- | src/gpu/ccpr/GrCCCoverageProcessor.cpp | 4 | ||||
-rw-r--r-- | src/gpu/ccpr/GrCCPathProcessor.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gpu/ccpr/GrCCCoverageProcessor.cpp b/src/gpu/ccpr/GrCCCoverageProcessor.cpp index 75d0667b09..94b027abe9 100644 --- a/src/gpu/ccpr/GrCCCoverageProcessor.cpp +++ b/src/gpu/ccpr/GrCCCoverageProcessor.cpp @@ -228,12 +228,12 @@ void GrCCCoverageProcessor::draw(GrOpFlushState* flushState, const GrPipeline& p const GrPipeline::DynamicState dynamicStates[], int meshCount, const SkRect& drawBounds) const { GrGpuRTCommandBuffer* cmdBuff = flushState->rtCommandBuffer(); - cmdBuff->draw(pipeline, *this, meshes, dynamicStates, meshCount, drawBounds); + cmdBuff->draw(*this, pipeline, meshes, dynamicStates, meshCount, drawBounds); // Geometry shader backend draws primitives in two subpasses. if (Impl::kGeometryShader == fImpl) { SkASSERT(GSSubpass::kHulls == fGSSubpass); GrCCCoverageProcessor cornerProc(*this, GSSubpass::kCorners); - cmdBuff->draw(pipeline, cornerProc, meshes, dynamicStates, meshCount, drawBounds); + cmdBuff->draw(cornerProc, pipeline, meshes, dynamicStates, meshCount, drawBounds); } } diff --git a/src/gpu/ccpr/GrCCPathProcessor.cpp b/src/gpu/ccpr/GrCCPathProcessor.cpp index e180724f8a..e1a508619a 100644 --- a/src/gpu/ccpr/GrCCPathProcessor.cpp +++ b/src/gpu/ccpr/GrCCPathProcessor.cpp @@ -147,7 +147,7 @@ void GrCCPathProcessor::drawPaths(GrOpFlushState* flushState, const GrPipeline& enablePrimitiveRestart); mesh.setVertexData(resources.vertexBuffer()); - flushState->rtCommandBuffer()->draw(pipeline, *this, &mesh, nullptr, 1, bounds); + flushState->rtCommandBuffer()->draw(*this, pipeline, &mesh, nullptr, 1, bounds); } void GLSLPathProcessor::onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) { |