BUG=skia:1994
R=robertphillips@google.com
Author: mtklein@google.com
Review URL: https://codereview.chromium.org/
129373002
git-svn-id: http://skia.googlecode.com/svn/trunk@12991
2bbb7eff-a529-9590-31e7-
b0007b416f81
static const int kHeight = 800;
protected:
+ uint32_t onGetFlags() const SK_OVERRIDE {
+ // One optimization changes the color drawn slightly in a 565 target.
+ // We've decided it's innocuous, so we disable this GM when targeting 565.
+ // Revisit this if we get finer-grained control: it'd be nice to keep drawing directly.
+ // For more, see skia:1994.
+ return skiagm::GM::kSkip565_Flag;
+ }
+
SkString onShortName() {
return SkString("optimizations");
}