aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/blurs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/blurs.cpp')
-rw-r--r--gm/blurs.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/gm/blurs.cpp b/gm/blurs.cpp
index a1f3ef08b6..bb688b9c1b 100644
--- a/gm/blurs.cpp
+++ b/gm/blurs.cpp
@@ -17,9 +17,15 @@ public:
}
protected:
+#ifdef SK_SCALAR_IS_FIXED
virtual uint32_t onGetFlags() const SK_OVERRIDE {
+ // SkCanvas::drawCircle, used by this test, performs a quick reject.
+ // The large size given to the device used by SkGPipeCanvas means that
+ // the device clip will not be set properly and circles will be
+ // rejected when in FIXED.
return this->INHERITED::onGetFlags() | GM::kSkipPipe_Flag;
}
+#endif
virtual SkString onShortName() {
return SkString("blurs");