| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "DMSrcSink.h" | 8 #include "DMSrcSink.h" |
| 9 #include "SamplePipeControllers.h" | 9 #include "SamplePipeControllers.h" |
| 10 #include "SkAndroidCodec.h" | 10 #include "SkAndroidCodec.h" |
| 11 #include "SkBitmapRegionDecoderPriv.h" |
| 11 #include "SkCodec.h" | 12 #include "SkCodec.h" |
| 12 #include "SkCodecTools.h" | |
| 13 #include "SkCommonFlags.h" | 13 #include "SkCommonFlags.h" |
| 14 #include "SkData.h" | 14 #include "SkData.h" |
| 15 #include "SkDocument.h" | 15 #include "SkDocument.h" |
| 16 #include "SkError.h" | 16 #include "SkError.h" |
| 17 #include "SkFunction.h" | 17 #include "SkFunction.h" |
| 18 #include "SkImageGenerator.h" | 18 #include "SkImageGenerator.h" |
| 19 #include "SkMultiPictureDraw.h" | 19 #include "SkMultiPictureDraw.h" |
| 20 #include "SkNullCanvas.h" | 20 #include "SkNullCanvas.h" |
| 21 #include "SkOSFile.h" | 21 #include "SkOSFile.h" |
| 22 #include "SkPictureData.h" | 22 #include "SkPictureData.h" |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 skr.visit<void>(i, drawsAsSingletonPictures); | 1333 skr.visit<void>(i, drawsAsSingletonPictures); |
| 1334 } | 1334 } |
| 1335 SkAutoTUnref<SkPicture> macroPic(macroRec.endRecordingAsPicture()); | 1335 SkAutoTUnref<SkPicture> macroPic(macroRec.endRecordingAsPicture()); |
| 1336 | 1336 |
| 1337 canvas->drawPicture(macroPic); | 1337 canvas->drawPicture(macroPic); |
| 1338 return ""; | 1338 return ""; |
| 1339 }); | 1339 }); |
| 1340 } | 1340 } |
| 1341 | 1341 |
| 1342 } // namespace DM | 1342 } // namespace DM |
| OLD | NEW |