aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/BlitMaskClip.cpp
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2016-06-10 13:01:27 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-06-10 13:01:27 -0700
commit7df9e4a87d84415391c167ea54cd389d4b423c2d (patch)
tree15314082e379437acef1acace3ae222cba6fb14f /tests/BlitMaskClip.cpp
parenta233620f9ce9d94272619ecf94962319faec693a (diff)
Make SkBlitter hierarchy explicit about what needs to be implemented.
Diffstat (limited to 'tests/BlitMaskClip.cpp')
-rw-r--r--tests/BlitMaskClip.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/BlitMaskClip.cpp b/tests/BlitMaskClip.cpp
index 8ba2cea3e0..21fe562368 100644
--- a/tests/BlitMaskClip.cpp
+++ b/tests/BlitMaskClip.cpp
@@ -24,6 +24,10 @@ public:
REPORTER_ASSERT(fReporter, right > fBounds.fLeft && right <= fBounds.fRight);
}
+ void blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) override {
+ SkDEBUGFAIL("blitAntiH not implemented");
+ }
+
private:
SkIRect fBounds;
skiatest::Reporter* fReporter;