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

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: Add comment 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..e6d81cdaa791397ee4173c22e77ccfd1dbd93c81 100644
--- a/gm/verylargebitmap.cpp
+++ b/gm/verylargebitmap.cpp
@@ -100,6 +100,20 @@ protected:
show_bm(canvas, veryBig, small, colors);
}
+ virtual uint32_t onGetFlags() const {
+#ifdef SK_BUILD_FOR_WIN32
+ // The Windows bot runs out of memory in replay modes on this test in 32bit builds:
+ // http://skbug.com/1756
+ return kSkipPicture_Flag |
+ 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