| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |