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

Side by Side Diff: tools/filtermain.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 | « tools/bench_record.cpp ('k') | tools/render_pictures_main.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 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 "SkDebugCanvas.h" 8 #include "SkDebugCanvas.h"
9 #include "SkDevice.h" 9 #include "SkDevice.h"
10 #include "SkForceLinking.h" 10 #include "SkForceLinking.h"
11 #include "SkGraphics.h" 11 #include "SkGraphics.h"
12 #include "SkImageDecoder.h" 12 #include "SkImageDecoder.h"
13 #include "SkImageEncoder.h" 13 #include "SkImageEncoder.h"
14 #include "SkOSFile.h" 14 #include "SkOSFile.h"
15 #include "SkPicture.h" 15 #include "SkPicture.h"
16 #include "SkPicturePlayback.h" 16 #include "SkPicturePlayback.h"
17 #include "SkPictureRecord.h" 17 #include "SkPictureRecord.h"
18 #include "SkPictureRecorder.h"
18 #include "SkStream.h" 19 #include "SkStream.h"
19 #include "picture_utils.h" 20 #include "picture_utils.h"
20 #include "path_utils.h" 21 #include "path_utils.h"
21 22
22 __SK_FORCE_IMAGE_DECODER_LINKING; 23 __SK_FORCE_IMAGE_DECODER_LINKING;
23 24
24 static void usage() { 25 static void usage() {
25 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output- dir path]\n"); 26 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output- dir path]\n");
26 SkDebugf(" [-h|--help]\n\n"); 27 SkDebugf(" [-h|--help]\n\n");
27 SkDebugf(" -i inFile : file to filter.\n"); 28 SkDebugf(" -i inFile : file to filter.\n");
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 839
839 SkGraphics::Term(); 840 SkGraphics::Term();
840 return 0; 841 return 0;
841 } 842 }
842 843
843 #if !defined SK_BUILD_FOR_IOS 844 #if !defined SK_BUILD_FOR_IOS
844 int main(int argc, char * const argv[]) { 845 int main(int argc, char * const argv[]) {
845 return tool_main(argc, (char**) argv); 846 return tool_main(argc, (char**) argv);
846 } 847 }
847 #endif 848 #endif
OLDNEW
« no previous file with comments | « tools/bench_record.cpp ('k') | tools/render_pictures_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698