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 |
91 /* To write debug messages to a console, skia will call SkDebugf(...) following | 97 /* To write debug messages to a console, skia will call SkDebugf(...) following |
92 printf conventions (e.g. const char* format, ...). If you want to redirect | 98 printf conventions (e.g. const char* format, ...). If you want to redirect |
93 this to something other than printf, define yours here | 99 this to something other than printf, define yours here |
94 */ | 100 */ |
95 //#define SkDebugf(...) MyFunction(__VA_ARGS__) | 101 //#define SkDebugf(...) MyFunction(__VA_ARGS__) |
96 | 102 |
97 /* | 103 /* |
98 * To specify a different default font cache limit, define this. If this is | 104 * To specify a different default font cache limit, define this. If this is |
99 * undefined, skia will use a built-in value. | 105 * undefined, skia will use a built-in value. |
100 */ | 106 */ |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 /* Skia uses these defines as the target of include preprocessor directives. | 189 /* Skia uses these defines as the target of include preprocessor directives. |
184 * The header files pointed to by these defines provide declarations and | 190 * The header files pointed to by these defines provide declarations and |
185 * possibly inline implementations of threading primitives. | 191 * possibly inline implementations of threading primitives. |
186 * | 192 * |
187 * See SkThread.h for documentation on what these includes must contain. | 193 * See SkThread.h for documentation on what these includes must contain. |
188 */ | 194 */ |
189 //#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h" | 195 //#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h" |
190 //#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h" | 196 //#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h" |
191 | 197 |
192 #endif | 198 #endif |
OLD | NEW |