diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-07 17:20:33 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-07 17:20:33 +0000 |
commit | a19818a146ecb966b16dc06ebdbd318fde214128 (patch) | |
tree | 24807a5d1e55d4593526dd17a81f2e8d3dd1d9b0 /gm | |
parent | 11f156201abe0d5e30f25a60bce1f4ae547c4083 (diff) |
Make imagealphathreshold GM skip replay modes until it is fixed.
TBR=zork@chromium.org
Review URL: https://codereview.chromium.org/94043005
git-svn-id: http://skia.googlecode.com/svn/trunk@12942 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm')
-rw-r--r-- | gm/imagealphathreshold.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gm/imagealphathreshold.cpp b/gm/imagealphathreshold.cpp index 7597090aa8..1600be9897 100644 --- a/gm/imagealphathreshold.cpp +++ b/gm/imagealphathreshold.cpp @@ -22,7 +22,11 @@ public: protected: virtual uint32_t onGetFlags() const SK_OVERRIDE { - return this->INHERITED::onGetFlags() | GM::kSkipTiled_Flag; + return this->INHERITED::onGetFlags() | + GM::kSkipTiled_Flag | + GM::kSkipPicture_Flag | + GM::kSkipPipe_Flag | + GM::kSkipPipeCrossProcess_Flag; } virtual SkString onShortName() SK_OVERRIDE { |