| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 } | 285 } |
| 286 | 286 |
| 287 void SkRecordOptimize2(SkRecord* record) { | 287 void SkRecordOptimize2(SkRecord* record) { |
| 288 multiple_set_matrices(record); | 288 multiple_set_matrices(record); |
| 289 SkRecordNoopSaveRestores(record); | 289 SkRecordNoopSaveRestores(record); |
| 290 SkRecordNoopSaveLayerDrawRestores(record); | 290 SkRecordNoopSaveLayerDrawRestores(record); |
| 291 SkRecordMergeSvgOpacityAndFilterLayers(record); | 291 SkRecordMergeSvgOpacityAndFilterLayers(record); |
| 292 | 292 |
| 293 record->defrag(); | 293 record->defrag(); |
| 294 } | 294 } |
| 295 | |
| OLD | NEW |