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 #ifndef skpdiff_util_DEFINED | 8 #ifndef skpdiff_util_DEFINED |
9 #define skpdiff_util_DEFINED | 9 #define skpdiff_util_DEFINED |
10 | 10 |
11 #include "SkString.h" | 11 #include "SkString.h" |
12 #include "SkTArray.h" | 12 #include "SkTArray.h" |
13 | 13 |
14 #if SK_SUPPORT_OPENCL | 14 #if SK_SUPPORT_OPENCL |
15 #include <CL/cl.h> | 15 #if SK_BUILD_FOR_MAC |
| 16 # include <OpenCL/cl.h> |
| 17 #else |
| 18 # include <CL/cl.h> |
| 19 #endif |
| 20 |
16 /** | 21 /** |
17 * Converts an OpenCL error number into the string of its enumeration name. | 22 * Converts an OpenCL error number into the string of its enumeration name. |
18 * @param err The OpenCL error number | 23 * @param err The OpenCL error number |
19 * @return The string of the name of the error; "UNKOWN" if the error number is
invalid | 24 * @return The string of the name of the error; "UNKOWN" if the error number is
invalid |
20 */ | 25 */ |
21 const char* cl_error_to_string(cl_int err); | 26 const char* cl_error_to_string(cl_int err); |
22 #endif | 27 #endif |
23 | 28 |
24 /** | 29 /** |
25 * Get a positive monotonic real-time measure of the amount of seconds since som
e undefined epoch. | 30 * Get a positive monotonic real-time measure of the amount of seconds since som
e undefined epoch. |
(...skipping 13 matching lines...) Expand all Loading... |
39 /** | 44 /** |
40 * Gets the files that match the specified pattern in sorted order. | 45 * Gets the files that match the specified pattern in sorted order. |
41 * @param globPattern The pattern to use. Patterns must be valid paths, optiona
lly with wildcards (*) | 46 * @param globPattern The pattern to use. Patterns must be valid paths, optiona
lly with wildcards (*) |
42 * @param entries An array to return the results into | 47 * @param entries An array to return the results into |
43 * @return True on success, false otherwise | 48 * @return True on success, false otherwise |
44 */ | 49 */ |
45 bool glob_files(const char globPattern[], SkTArray<SkString>* entries); | 50 bool glob_files(const char globPattern[], SkTArray<SkString>* entries); |
46 | 51 |
47 | 52 |
48 #endif | 53 #endif |
OLD | NEW |