diff options
author | Brian Salomon <bsalomon@google.com> | 2017-04-04 15:13:25 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-04-04 19:46:18 +0000 |
commit | e14bd80db048277daa3db28496310e1863b5b7a9 (patch) | |
tree | 7da5f6aa72b4b884476f46cc4cebe2a9fa3274c4 /tools/gpu/GrTest.cpp | |
parent | 9e4d51126f60264f53fbf841ef97092803e88374 (diff) |
Move GrPipelineBuilder into GrRenderTargetContext::addLegacyDrawOp
This makes the legacy code use GrProcessorSet::Analysis in the same manner as the non-GrLegacyMeshDrawOps which enables changes to how analysis works.
Change-Id: I8171e285ac8930beb3ac33cd3c4ee88f217b9e40
Reviewed-on: https://skia-review.googlesource.com/11205
Commit-Queue: Brian Salomon <bsalomon@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'tools/gpu/GrTest.cpp')
-rw-r--r-- | tools/gpu/GrTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gpu/GrTest.cpp b/tools/gpu/GrTest.cpp index 23c8a16484..0350ff3e5a 100644 --- a/tools/gpu/GrTest.cpp +++ b/tools/gpu/GrTest.cpp @@ -247,7 +247,8 @@ uint32_t GrRenderTargetContextPriv::testingOnly_addLegacyMeshDrawOp( } pipelineBuilder.setSnapVerticesToPixelCenters(snapToCenters); - return fRenderTargetContext->addLegacyMeshDrawOp(pipelineBuilder, GrNoClip(), std::move(op)); + return fRenderTargetContext->addLegacyMeshDrawOp(std::move(pipelineBuilder), GrNoClip(), + std::move(op)); } #undef ASSERT_SINGLE_OWNER |