aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm
diff options
context:
space:
mode:
authorGravatar scroggo <scroggo@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-20 17:55:10 +0000
committerGravatar scroggo <scroggo@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-20 17:55:10 +0000
commitfacc95a87b4247c53eeb7838dff9b02d60f29fa2 (patch)
tree4159d4323f592ebb136dccb4733467834d23adc6 /gm
parentb3e50f23c57d058820701219e66b6bfb8e0681a4 (diff)
Disable imagefiltersgraph from running through pipe on android
While we figure out what the problem is. Review URL: https://codereview.appspot.com/6441164 git-svn-id: http://skia.googlecode.com/svn/trunk@5193 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm')
-rw-r--r--gm/imagefiltersgraph.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/gm/imagefiltersgraph.cpp b/gm/imagefiltersgraph.cpp
index 7c60546a11..15350641ae 100644
--- a/gm/imagefiltersgraph.cpp
+++ b/gm/imagefiltersgraph.cpp
@@ -20,6 +20,12 @@ public:
ImageFiltersGraphGM() : fInitialized(false) {}
protected:
+#ifdef SK_BUILD_FOR_ANDROID
+ // This test is currently broken when using pipe on Android
+ virtual uint32_t onGetFlags() const SK_OVERRIDE {
+ return this->INHERITED::onGetFlags() | skiagm::GM::kSkipPipe_Flag;
+ }
+#endif
virtual SkString onShortName() {
return SkString("imagefiltersgraph");