aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-01-06 10:21:56 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-01-06 16:14:00 +0000
commit8c8cb5bfc547229422a33db5c344fe1542bf00a7 (patch)
tree55c4405c03f8e99b91822b3ae8b3dd7b15c3307e /tests
parenta3fa2efcfc376b4823fe75d2027a74a54a639880 (diff)
simplify by removing _d stages
CQ_INCLUDE_TRYBOTS=skia.primary:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD Change-Id: I75e232faee6ad48f65bac5b119a461280b27bbc8 Reviewed-on: https://skia-review.googlesource.com/6661 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/SkRasterPipelineTest.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/SkRasterPipelineTest.cpp b/tests/SkRasterPipelineTest.cpp
index 50c417f5f0..ddd84e7cce 100644
--- a/tests/SkRasterPipelineTest.cpp
+++ b/tests/SkRasterPipelineTest.cpp
@@ -22,7 +22,9 @@ DEF_TEST(SkRasterPipeline, r) {
SkRasterPipeline p;
p.append(SkRasterPipeline::load_f16, &load_s_ctx);
- p.append(SkRasterPipeline::load_f16_d, &load_d_ctx);
+ p.append(SkRasterPipeline::move_src_dst);
+ p.append(SkRasterPipeline::load_f16, &load_d_ctx);
+ p.append(SkRasterPipeline::swap);
p.append(SkRasterPipeline::srcover);
p.append(SkRasterPipeline::store_f16, &store_ctx);
p.run(0,0, 1);