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

Unified Diff: src/core/SkPictureAnalysis.h

Issue 364823009: Port suitableForGpuRasterization to SkRecord (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More SkPicture.h cleanup Created 6 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
Index: src/core/SkPictureAnalysis.h
diff --git a/src/core/SkPictureAnalysis.h b/src/core/SkPictureAnalysis.h
new file mode 100644
index 0000000000000000000000000000000000000000..8b46f1338c7f000d099968d7d6f284c30141175e
--- /dev/null
+++ b/src/core/SkPictureAnalysis.h
@@ -0,0 +1,14 @@
+#ifndef SkPictureAnalysis_DEFINED
+#define SkPictureAnalysis_DEFINED
+
+struct SkPictureAnalysis {
+ SkPictureAnalysis()
+ : fRecordWillPlaybackBitmaps(false)
+ , fSuitableForGpuRasterization(false) { }
+
+ bool fRecordWillPlaybackBitmaps;
+ bool fSuitableForGpuRasterization;
+};
+
+#endif // SkPictureAnalysis_DEFINED
+
« no previous file with comments | « src/core/SkPicture.cpp ('k') | src/core/SkPictureRecorder.cpp » ('j') | src/core/SkRecord.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698