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

Side by Side Diff: bench/benchmain.cpp

Issue 243173002: Staging for cleanup of SkPicture-related headers (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Add crucial newline at end of file Created 6 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « bench/PictureRecordBench.cpp ('k') | debugger/SkDebugger.cpp » ('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 2011 Google Inc. 2 * Copyright 2011 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 "BenchTimer.h" 8 #include "BenchTimer.h"
9 #include "ResultsWriter.h" 9 #include "ResultsWriter.h"
10 #include "SkBenchLogger.h" 10 #include "SkBenchLogger.h"
11 #include "SkBenchmark.h" 11 #include "SkBenchmark.h"
12 #include "SkBitmapDevice.h" 12 #include "SkBitmapDevice.h"
13 #include "SkCanvas.h" 13 #include "SkCanvas.h"
14 #include "SkColorPriv.h" 14 #include "SkColorPriv.h"
15 #include "SkCommandLineFlags.h" 15 #include "SkCommandLineFlags.h"
16 #include "SkData.h" 16 #include "SkData.h"
17 #include "SkDeferredCanvas.h" 17 #include "SkDeferredCanvas.h"
18 #include "SkGMBench.h" 18 #include "SkGMBench.h"
19 #include "SkGraphics.h" 19 #include "SkGraphics.h"
20 #include "SkImageEncoder.h" 20 #include "SkImageEncoder.h"
21 #include "SkOSFile.h" 21 #include "SkOSFile.h"
22 #include "SkPicture.h" 22 #include "SkPicture.h"
23 #include "SkPictureRecorder.h"
23 #include "SkString.h" 24 #include "SkString.h"
24 #include "SkSurface.h" 25 #include "SkSurface.h"
25 26
26 #if SK_SUPPORT_GPU 27 #if SK_SUPPORT_GPU
27 #include "GrContext.h" 28 #include "GrContext.h"
28 #include "GrContextFactory.h" 29 #include "GrContextFactory.h"
29 #include "GrRenderTarget.h" 30 #include "GrRenderTarget.h"
30 #include "SkGpuDevice.h" 31 #include "SkGpuDevice.h"
31 #include "gl/GrGLDefines.h" 32 #include "gl/GrGLDefines.h"
32 #else 33 #else
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 gContextFactory.destroyContexts(); 698 gContextFactory.destroyContexts();
698 #endif 699 #endif
699 return 0; 700 return 0;
700 } 701 }
701 702
702 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) 703 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
703 int main(int argc, char * const argv[]) { 704 int main(int argc, char * const argv[]) {
704 return tool_main(argc, (char**) argv); 705 return tool_main(argc, (char**) argv);
705 } 706 }
706 #endif 707 #endif
OLDNEW
« no previous file with comments | « bench/PictureRecordBench.cpp ('k') | debugger/SkDebugger.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698