OLD | NEW |
1 /* libpng 1.6.16 STANDARD API DEFINITION */ | 1 /* libpng 1.6.16 STANDARD API DEFINITION */ |
2 | 2 |
3 /* pnglibconf.h - library build configuration */ | 3 /* pnglibconf.h - library build configuration */ |
4 | 4 |
5 /* Libpng version 1.6.16 - December 22, 2014 */ | 5 /* Libpng version 1.6.16 - December 22, 2014 */ |
6 | 6 |
7 /* Copyright (c) 1998-2014 Glenn Randers-Pehrson */ | 7 /* Copyright (c) 1998-2014 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 #define PNG_Z_DEFAULT_COMPRESSION (-1) | 204 #define PNG_Z_DEFAULT_COMPRESSION (-1) |
205 #define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 | 205 #define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 |
206 #define PNG_Z_DEFAULT_STRATEGY 1 | 206 #define PNG_Z_DEFAULT_STRATEGY 1 |
207 #define PNG_sCAL_PRECISION 5 | 207 #define PNG_sCAL_PRECISION 5 |
208 #define PNG_sRGB_PROFILE_CHECKS 2 | 208 #define PNG_sRGB_PROFILE_CHECKS 2 |
209 /* end of settings */ | 209 /* end of settings */ |
210 | 210 |
211 /* custom settings */ | 211 /* custom settings */ |
212 #define PNG_ARM_NEON_API_SUPPORTED | 212 #define PNG_ARM_NEON_API_SUPPORTED |
213 #define PNG_ARM_NEON_CHECK_SUPPORTED | 213 #define PNG_ARM_NEON_CHECK_SUPPORTED |
| 214 #if defined(__SSE2__) |
| 215 #define PNG_FILTER_OPTIMIZATIONS sk_png_init_filter_functions_sse2 |
| 216 #endif |
214 /* end of custom settings */ | 217 /* end of custom settings */ |
215 | 218 |
216 #endif /* PNGLCONF_H */ | 219 #endif /* PNGLCONF_H */ |
OLD | NEW |