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

Side by Side Diff: dm/DMSrcSink.cpp

Issue 1417393004: Reorganize BRD code in new tools directory (Closed) Base URL: https://skia.googlesource.com/skia.git@delete-imdec
Patch Set: tools/android Created 5 years, 1 month 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 | « dm/DM.cpp ('k') | gyp/bench.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698