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

Side by Side Diff: src/core/SkRecordPattern.h

Issue 331573004: Add EXPERIMENTAL_beginRecording() for SkRecord-based recording. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: put back Created 6 years, 6 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 unified diff | Download patch
« no previous file with comments | « src/core/SkRecordOpts.cpp ('k') | src/core/SkRecorder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef SkRecordPattern_DEFINED 1 #ifndef SkRecordPattern_DEFINED
2 #define SkRecordPattern_DEFINED 2 #define SkRecordPattern_DEFINED
3 3
4 #include "SkTLogic.h" 4 #include "SkTLogic.h"
5 5
6 namespace SkRecords { 6 namespace SkRecords {
7 7
8 // First, some matchers. These match a single command in the SkRecord, 8 // First, some matchers. These match a single command in the SkRecord,
9 // and may hang onto some data from it. If so, you can get the data by calling .get(). 9 // and may hang onto some data from it. If so, you can get the data by calling .get().
10 10
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 template <typename A, typename B> 175 template <typename A, typename B>
176 struct Pattern2 : Cons<A, Pattern1<B> > {}; 176 struct Pattern2 : Cons<A, Pattern1<B> > {};
177 177
178 template <typename A, typename B, typename C> 178 template <typename A, typename B, typename C>
179 struct Pattern3 : Cons<A, Pattern2<B, C> > {}; 179 struct Pattern3 : Cons<A, Pattern2<B, C> > {};
180 180
181 } // namespace SkRecords 181 } // namespace SkRecords
182 182
183 #endif//SkRecordPattern_DEFINED 183 #endif//SkRecordPattern_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkRecordOpts.cpp ('k') | src/core/SkRecorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698