OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "BenchLogger.h" | 8 #include "BenchLogger.h" |
9 #include "BenchTimer.h" | 9 #include "Timer.h" |
10 #include "CopyTilesRenderer.h" | 10 #include "CopyTilesRenderer.h" |
11 #include "CrashHandler.h" | 11 #include "CrashHandler.h" |
12 #include "LazyDecodeBitmap.h" | 12 #include "LazyDecodeBitmap.h" |
13 #include "PictureBenchmark.h" | 13 #include "PictureBenchmark.h" |
14 #include "PictureRenderingFlags.h" | 14 #include "PictureRenderingFlags.h" |
15 #include "PictureResultsWriter.h" | 15 #include "PictureResultsWriter.h" |
16 #include "SkCommandLineFlags.h" | 16 #include "SkCommandLineFlags.h" |
17 #include "SkData.h" | 17 #include "SkData.h" |
18 #include "SkDiscardableMemoryPool.h" | 18 #include "SkDiscardableMemoryPool.h" |
19 #include "SkGraphics.h" | 19 #include "SkGraphics.h" |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 #endif | 456 #endif |
457 gWriter.end(); | 457 gWriter.end(); |
458 return 0; | 458 return 0; |
459 } | 459 } |
460 | 460 |
461 #if !defined SK_BUILD_FOR_IOS | 461 #if !defined SK_BUILD_FOR_IOS |
462 int main(int argc, char * const argv[]) { | 462 int main(int argc, char * const argv[]) { |
463 return tool_main(argc, (char**) argv); | 463 return tool_main(argc, (char**) argv); |
464 } | 464 } |
465 #endif | 465 #endif |
OLD | NEW |