| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 The Android Open Source Project | 2 * Copyright (C) 2006 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); | 4 * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 * you may not use this file except in compliance with the License. | 5 * you may not use this file except in compliance with the License. |
| 6 * You may obtain a copy of the License at | 6 * You may obtain a copy of the License at |
| 7 * | 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * | 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 /* preconfig will have attempted to determine the endianness of the system, | 71 /* preconfig will have attempted to determine the endianness of the system, |
| 72 but you can change these mutually exclusive flags here. | 72 but you can change these mutually exclusive flags here. |
| 73 */ | 73 */ |
| 74 //#define SK_CPU_BENDIAN | 74 //#define SK_CPU_BENDIAN |
| 75 //#define SK_CPU_LENDIAN | 75 //#define SK_CPU_LENDIAN |
| 76 | 76 |
| 77 /* Define this to provide font subsetter for font subsetting when generating | 77 /* Define this to provide font subsetter for font subsetting when generating |
| 78 PDF documents. | 78 PDF documents. |
| 79 */ | 79 */ |
| 80 #define SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h" | 80 #define SK_PDF_USE_SFNTLY |
| 81 | 81 |
| 82 /* To write debug messages to a console, skia will call SkDebugf(...) following | 82 /* To write debug messages to a console, skia will call SkDebugf(...) following |
| 83 printf conventions (e.g. const char* format, ...). If you want to redirect | 83 printf conventions (e.g. const char* format, ...). If you want to redirect |
| 84 this to something other than printf, define yours here | 84 this to something other than printf, define yours here |
| 85 */ | 85 */ |
| 86 //#define SkDebugf(...) MyFunction(__VA_ARGS__) | 86 //#define SkDebugf(...) MyFunction(__VA_ARGS__) |
| 87 | 87 |
| 88 | 88 |
| 89 /* If SK_DEBUG is defined, then you can optionally define SK_SUPPORT_UNITTEST | 89 /* If SK_DEBUG is defined, then you can optionally define SK_SUPPORT_UNITTEST |
| 90 which will run additional self-tests at startup. These can take a long time, | 90 which will run additional self-tests at startup. These can take a long time, |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 #define SK_SUPPORT_LEGACY_X86_BLITS | 251 #define SK_SUPPORT_LEGACY_X86_BLITS |
| 252 | 252 |
| 253 #define SK_DISABLE_TILE_IMAGE_FILTER_OPTIMIZATION | 253 #define SK_DISABLE_TILE_IMAGE_FILTER_OPTIMIZATION |
| 254 | 254 |
| 255 // Updating to a correct SkPMColor lerp will require layout test rebaselines. | 255 // Updating to a correct SkPMColor lerp will require layout test rebaselines. |
| 256 #define SK_SUPPORT_LEGACY_BROKEN_LERP | 256 #define SK_SUPPORT_LEGACY_BROKEN_LERP |
| 257 | 257 |
| 258 // ===== End Chrome-specific definitions ===== | 258 // ===== End Chrome-specific definitions ===== |
| 259 | 259 |
| 260 #endif | 260 #endif |
| OLD | NEW |