| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkRecordOpts.h" | 8 #include "SkRecordOpts.h" |
| 9 | 9 |
| 10 #include "SkRecordPattern.h" | 10 #include "SkRecordPattern.h" |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 }; | 294 }; |
| 295 | 295 |
| 296 SkTDArray<Pair> fPushStack; | 296 SkTDArray<Pair> fPushStack; |
| 297 SkRecord* fRecord; | 297 SkRecord* fRecord; |
| 298 unsigned fIndex; | 298 unsigned fIndex; |
| 299 }; | 299 }; |
| 300 void SkRecordAnnotateCullingPairs(SkRecord* record) { | 300 void SkRecordAnnotateCullingPairs(SkRecord* record) { |
| 301 CullAnnotator pass; | 301 CullAnnotator pass; |
| 302 pass.apply(record); | 302 pass.apply(record); |
| 303 } | 303 } |
| OLD | NEW |