OLD | NEW |
| 1 /* |
| 2 * Copyright 2014 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
1 #ifndef SkRecords_DEFINED | 8 #ifndef SkRecords_DEFINED |
2 #define SkRecords_DEFINED | 9 #define SkRecords_DEFINED |
3 | 10 |
4 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
5 | 12 |
6 namespace SkRecords { | 13 namespace SkRecords { |
7 | 14 |
8 // A list of all the types of canvas calls we can record. | 15 // A list of all the types of canvas calls we can record. |
9 // Each of these is reified into a struct below. | 16 // Each of these is reified into a struct below. |
10 // | 17 // |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 #undef RECORD0 | 213 #undef RECORD0 |
207 #undef RECORD1 | 214 #undef RECORD1 |
208 #undef RECORD2 | 215 #undef RECORD2 |
209 #undef RECORD3 | 216 #undef RECORD3 |
210 #undef RECORD4 | 217 #undef RECORD4 |
211 #undef RECORD5 | 218 #undef RECORD5 |
212 | 219 |
213 } // namespace SkRecords | 220 } // namespace SkRecords |
214 | 221 |
215 #endif//SkRecords_DEFINED | 222 #endif//SkRecords_DEFINED |
OLD | NEW |