Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: gm/verylargebitmap.cpp

Issue 52903003: Exclude verylargebitmap test from replay modes on windows. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/verylargebitmap.cpp
diff --git a/gm/verylargebitmap.cpp b/gm/verylargebitmap.cpp
index bc83526c2976decb7df89169f90b0e51b1f405a4..3886257cda960b94628dec3d43df8bd5f34211a1 100644
--- a/gm/verylargebitmap.cpp
+++ b/gm/verylargebitmap.cpp
@@ -100,6 +100,18 @@ protected:
show_bm(canvas, veryBig, small, colors);
}
+ virtual uint32_t onGetFlags() const {
+#ifdef SK_BUILD_FOR_WIN32
+ return kSkipPicture_Flag |
epoger 2013/10/30 18:08:50 Please add a comment here referring to https://cod
bsalomon 2013/10/30 18:12:51 Done.
+ kSkipPipe_Flag |
+ kSkipPipeCrossProcess_Flag |
+ kSkipTiled_Flag |
+ kSkipScaledReplay_Flag;
+#else
+ return 0;
+#endif
+ }
+
private:
typedef skiagm::GM INHERITED;
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698