aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/SkLinearBitmapPipelineTest.cpp
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2016-02-22 14:48:21 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-22 14:48:22 -0800
commita856e25ba1e54de6c5b6641e4c8b5c0d6b5ea42b (patch)
tree1576fc6dd0cbce28bb8b9e288e17bd2c4d6bf26a /tests/SkLinearBitmapPipelineTest.cpp
parentbc9a9b4cdcd19c8af9448ad6dc271a0faee617e5 (diff)
Better encapsulation and vector calling convention.
Diffstat (limited to 'tests/SkLinearBitmapPipelineTest.cpp')
-rw-r--r--tests/SkLinearBitmapPipelineTest.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/SkLinearBitmapPipelineTest.cpp b/tests/SkLinearBitmapPipelineTest.cpp
index 9d12f1b465..04f2e2783e 100644
--- a/tests/SkLinearBitmapPipelineTest.cpp
+++ b/tests/SkLinearBitmapPipelineTest.cpp
@@ -10,14 +10,6 @@
#include "SkPM4f.h"
#include "Test.h"
-struct SinkBilerpProcessor final : public PointProcessorInterface {
- void pointListFew(int n, Sk4fArg xs, Sk4fArg ys) override { fXs = xs; fYs = ys; }
- void pointList4(Sk4fArg Xs, Sk4fArg Ys) override { fXs = Xs; fYs = Ys; }
- void pointSpan(SkPoint start, SkScalar length, int count) override { }
- Sk4f fXs;
- Sk4f fYs;
-};
-
using Pixel = float[4];
DEF_TEST(SkBitmapFP, reporter) {