Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* libpng 1.6.22rc01 STANDARD API DEFINITION */ | 1 /* libpng 1.6.22rc01 STANDARD API DEFINITION */ |
| 2 | 2 |
| 3 /* pnglibconf.h - library build configuration */ | 3 /* pnglibconf.h - library build configuration */ |
| 4 | 4 |
| 5 /* Libpng version 1.6.22rc01 - May 14, 2016 */ | 5 /* Libpng version 1.6.22rc01 - May 14, 2016 */ |
| 6 | 6 |
| 7 /* Copyright (c) 1998-2015 Glenn Randers-Pehrson */ | 7 /* Copyright (c) 1998-2015 Glenn Randers-Pehrson */ |
| 8 | 8 |
| 9 /* This code is released under the libpng license. */ | 9 /* This code is released under the libpng license. */ |
| 10 /* For conditions of distribution and use, see the disclaimer */ | 10 /* For conditions of distribution and use, see the disclaimer */ |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 205 #define PNG_USER_HEIGHT_MAX 1000000 | 205 #define PNG_USER_HEIGHT_MAX 1000000 |
| 206 #define PNG_USER_WIDTH_MAX 1000000 | 206 #define PNG_USER_WIDTH_MAX 1000000 |
| 207 #define PNG_ZBUF_SIZE 8192 | 207 #define PNG_ZBUF_SIZE 8192 |
| 208 #define PNG_ZLIB_VERNUM 0 /* unknown */ | 208 #define PNG_ZLIB_VERNUM 0 /* unknown */ |
| 209 #define PNG_Z_DEFAULT_COMPRESSION (-1) | 209 #define PNG_Z_DEFAULT_COMPRESSION (-1) |
| 210 #define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 | 210 #define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 |
| 211 #define PNG_Z_DEFAULT_STRATEGY 1 | 211 #define PNG_Z_DEFAULT_STRATEGY 1 |
| 212 #define PNG_sCAL_PRECISION 5 | 212 #define PNG_sCAL_PRECISION 5 |
| 213 #define PNG_sRGB_PROFILE_CHECKS 2 | 213 #define PNG_sRGB_PROFILE_CHECKS 2 |
| 214 /* end of settings */ | 214 /* end of settings */ |
| 215 | |
| 216 /* Skia-specific settings */ | |
| 217 #define PNG_PREFIX | |
|
mtklein
2016/06/06 15:29:59
#define PNG_PREFIX skia_
?
| |
| 218 #include "pngprefix.h" | |
| 219 /* end of Skia-specific settings */ | |
| 220 | |
| 215 #endif /* PNGLCONF_H */ | 221 #endif /* PNGLCONF_H */ |
| OLD | NEW |