OLD | NEW |
1 /* ***** BEGIN LICENSE BLOCK ***** | 1 /* ***** BEGIN LICENSE BLOCK ***** |
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
3 * | 3 * |
4 * The contents of this file are subject to the Mozilla Public License Version | 4 * The contents of this file are subject to the Mozilla Public License Version |
5 * 1.1 (the "License"); you may not use this file except in compliance with | 5 * 1.1 (the "License"); you may not use this file except in compliance with |
6 * the License. You may obtain a copy of the License at | 6 * the License. You may obtain a copy of the License at |
7 * http://www.mozilla.org/MPL/ | 7 * http://www.mozilla.org/MPL/ |
8 * | 8 * |
9 * Software distributed under the License is distributed on an "AS IS" basis, | 9 * Software distributed under the License is distributed on an "AS IS" basis, |
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 #endif | 108 #endif |
109 | 109 |
110 #define PNG_NO_USER_MEM | 110 #define PNG_NO_USER_MEM |
111 #define PNG_NO_FIXED_POINT_SUPPORTED | 111 #define PNG_NO_FIXED_POINT_SUPPORTED |
112 #define PNG_NO_MNG_FEATURES | 112 #define PNG_NO_MNG_FEATURES |
113 #define PNG_NO_USER_TRANSFORM_PTR | 113 #define PNG_NO_USER_TRANSFORM_PTR |
114 #define PNG_NO_HANDLE_AS_UNKNOWN | 114 #define PNG_NO_HANDLE_AS_UNKNOWN |
115 #define PNG_NO_CONSOLE_IO | 115 #define PNG_NO_CONSOLE_IO |
116 #define PNG_NO_ZALLOC_ZERO | 116 #define PNG_NO_ZALLOC_ZERO |
117 #define PNG_NO_ERROR_NUMBERS | 117 #define PNG_NO_ERROR_NUMBERS |
118 #define PNG_NO_EASY_ACCESS | 118 #undef PNG_NO_EASY_ACCESS |
119 #define PNG_NO_USER_LIMITS | 119 #define PNG_NO_USER_LIMITS |
120 #define PNG_NO_SET_USER_LIMITS | 120 #define PNG_NO_SET_USER_LIMITS |
121 #define PNG_NO_TIME_RFC1123 | 121 #define PNG_NO_TIME_RFC1123 |
122 #undef PNG_NO_INFO_IMAGE | 122 #undef PNG_NO_INFO_IMAGE |
123 #undef PNG_NO_PROGRESSIVE_READ | 123 #undef PNG_NO_PROGRESSIVE_READ |
124 #undef PNG_NO_SEQUENTIAL_READ | 124 #undef PNG_NO_SEQUENTIAL_READ |
125 | 125 |
126 /* Mangle names of exported libpng functions so different libpng versions | 126 /* Mangle names of exported libpng functions so different libpng versions |
127 can coexist. It is recommended that if you do this, you give your | 127 can coexist. It is recommended that if you do this, you give your |
128 library a different name such as "libwkpng" instead of "libpng". */ | 128 library a different name such as "libwkpng" instead of "libpng". */ |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 #define png_write_sig wk_png_write_sig | 484 #define png_write_sig wk_png_write_sig |
485 #define png_write_start_row wk_png_write_start_row | 485 #define png_write_start_row wk_png_write_start_row |
486 #define png_write_tEXt wk_png_write_tEXt | 486 #define png_write_tEXt wk_png_write_tEXt |
487 #define png_write_tIME wk_png_write_tIME | 487 #define png_write_tIME wk_png_write_tIME |
488 #define png_write_tRNS wk_png_write_tRNS | 488 #define png_write_tRNS wk_png_write_tRNS |
489 #define png_write_zTXt wk_png_write_zTXt | 489 #define png_write_zTXt wk_png_write_zTXt |
490 #define png_zalloc wk_png_zalloc | 490 #define png_zalloc wk_png_zalloc |
491 #define png_zfree wk_png_zfree | 491 #define png_zfree wk_png_zfree |
492 | 492 |
493 #endif // CHROME_THIRD_PARTY_LIBPNG_PNGUSR_H__ | 493 #endif // CHROME_THIRD_PARTY_LIBPNG_PNGUSR_H__ |
OLD | NEW |