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

Side by Side Diff: tools/skpdiff/main.cpp

Issue 19671002: migrate skpdiff to tools (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 #if SK_SUPPORT_OPENCL 8 #if SK_SUPPORT_OPENCL
9 #define __NO_STD_VECTOR // Uses cl::vectpr instead of std::vectpr 9 #define __NO_STD_VECTOR // Uses cl::vectpr instead of std::vectpr
10 #define __NO_STD_STRING // Uses cl::STRING_CLASS instead of std::string 10 #define __NO_STD_STRING // Uses cl::STRING_CLASS instead of std::string
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 } 183 }
184 184
185 // Output to the file specified 185 // Output to the file specified
186 if (!FLAGS_output.isEmpty()) { 186 if (!FLAGS_output.isEmpty()) {
187 SkFILEWStream outputStream(FLAGS_output[0]); 187 SkFILEWStream outputStream(FLAGS_output[0]);
188 ctx.outputRecords(outputStream, FLAGS_jsonp); 188 ctx.outputRecords(outputStream, FLAGS_jsonp);
189 } 189 }
190 190
191 return 0; 191 return 0;
192 } 192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698