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

Unified Diff: gm/gm.h

Issue 23192004: Fixes for factory GM. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Be more specific about what to skip. Created 7 years, 4 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 | « gm/factory.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/gm.h
diff --git a/gm/gm.h b/gm/gm.h
index bb263c774126c770e7f64f858f6f908a808c0e35..f8069737b2c9d223d0254dcb810c7f83d2183e25 100644
--- a/gm/gm.h
+++ b/gm/gm.h
@@ -34,13 +34,14 @@ namespace skiagm {
virtual ~GM();
enum Flags {
- kSkipPDF_Flag = 1 << 0,
- kSkipPicture_Flag = 1 << 1,
- kSkipPipe_Flag = 1 << 2,
- kSkipTiled_Flag = 1 << 3,
- kSkip565_Flag = 1 << 4,
- kSkipScaledReplay_Flag = 1 << 5,
- kSkipGPU_Flag = 1 << 6,
+ kSkipPDF_Flag = 1 << 0,
+ kSkipPicture_Flag = 1 << 1,
+ kSkipPipe_Flag = 1 << 2,
+ kSkipPipeCrossProcess_Flag = 1 << 3,
+ kSkipTiled_Flag = 1 << 4,
+ kSkip565_Flag = 1 << 5,
+ kSkipScaledReplay_Flag = 1 << 6,
+ kSkipGPU_Flag = 1 << 7,
};
void draw(SkCanvas*);
« no previous file with comments | « gm/factory.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698