| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkUserConfig_DEFINED | 10 #ifndef SkUserConfig_DEFINED |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 /* Most compilers use the same bit endianness for bit flags in a byte as the | 81 /* Most compilers use the same bit endianness for bit flags in a byte as the |
| 82 system byte endianness, and this is the default. If for some reason this | 82 system byte endianness, and this is the default. If for some reason this |
| 83 needs to be overridden, specify which of the mutually exclusive flags to | 83 needs to be overridden, specify which of the mutually exclusive flags to |
| 84 use. For example, some atom processors in certain configurations have big | 84 use. For example, some atom processors in certain configurations have big |
| 85 endian byte order but little endian bit orders. | 85 endian byte order but little endian bit orders. |
| 86 */ | 86 */ |
| 87 //#define SK_UINT8_BITFIELD_BENDIAN | 87 //#define SK_UINT8_BITFIELD_BENDIAN |
| 88 //#define SK_UINT8_BITFIELD_LENDIAN | 88 //#define SK_UINT8_BITFIELD_LENDIAN |
| 89 | 89 |
| 90 | 90 |
| 91 /* Some compilers don't support long long for 64bit integers. If yours does | |
| 92 not, define this to the appropriate type. | |
| 93 */ | |
| 94 //#define SkLONGLONG int64_t | |
| 95 | |
| 96 | |
| 97 /* To write debug messages to a console, skia will call SkDebugf(...) following | 91 /* To write debug messages to a console, skia will call SkDebugf(...) following |
| 98 printf conventions (e.g. const char* format, ...). If you want to redirect | 92 printf conventions (e.g. const char* format, ...). If you want to redirect |
| 99 this to something other than printf, define yours here | 93 this to something other than printf, define yours here |
| 100 */ | 94 */ |
| 101 //#define SkDebugf(...) MyFunction(__VA_ARGS__) | 95 //#define SkDebugf(...) MyFunction(__VA_ARGS__) |
| 102 | 96 |
| 103 /* | 97 /* |
| 104 * To specify a different default font cache limit, define this. If this is | 98 * To specify a different default font cache limit, define this. If this is |
| 105 * undefined, skia will use a built-in value. | 99 * undefined, skia will use a built-in value. |
| 106 */ | 100 */ |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 /* Skia uses these defines as the target of include preprocessor directives. | 183 /* Skia uses these defines as the target of include preprocessor directives. |
| 190 * The header files pointed to by these defines provide declarations and | 184 * The header files pointed to by these defines provide declarations and |
| 191 * possibly inline implementations of threading primitives. | 185 * possibly inline implementations of threading primitives. |
| 192 * | 186 * |
| 193 * See SkThread.h for documentation on what these includes must contain. | 187 * See SkThread.h for documentation on what these includes must contain. |
| 194 */ | 188 */ |
| 195 //#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h" | 189 //#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h" |
| 196 //#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h" | 190 //#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h" |
| 197 | 191 |
| 198 #endif | 192 #endif |
| OLD | NEW |