Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: third_party/libpng/pnglibconf.h

Issue 23494067: Revert "libpng 1.6.3" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/libpng/pnginfo.h ('k') | third_party/libpng/pngmem.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
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
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
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
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is mozilla libpng configuration.
15 *
16 * The Initial Developer of the Original Code is
17 * Tim Rowley.
18 * Portions created by the Initial Developer are Copyright (C) 2003
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s): Tim Rowley <tor@cs.brown.edu>, Apple Computer
22 *
23 * Alternatively, the contents of this file may be used under the terms of
24 * either the GNU General Public License Version 2 or later (the "GPL"), or
25 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
26 * in which case the provisions of the GPL or the LGPL are applicable instead
27 * of those above. If you wish to allow use of your version of this file only
28 * under the terms of either the GPL or the LGPL, and not to allow others to
29 * use your version of this file under the terms of the MPL, indicate your
30 * decision by deleting the provisions above and replace them with the notice
31 * and other provisions required by the GPL or the LGPL. If you do not delete
32 * the provisions above, a recipient may use your version of this file under
33 * the terms of any one of the MPL, the GPL or the LGPL.
34 *
35 * ***** END LICENSE BLOCK ***** */
36
37 #ifndef CHROME_THIRD_PARTY_LIBPNG_PNGLIBCONF_H__
38 #define CHROME_THIRD_PARTY_LIBPNG_PNGLIBCONF_H__
39
40 // For libpng 1.6.3
41 #define PNG_SAFE_LIMITS_SUPPORTED
42 #define PNG_SETJMP_SUPPORTED
43 #define PNG_PROGRESSIVE_READ_SUPPORTED
44 #define PNG_READ_INTERLACING_SUPPORTED
45 #define PNG_USER_TRANSFORM_PTR_SUPPORTED
46 #define PNG_WRITE_USER_TRANSFORM_SUPPORTED
47 #define PNG_READ_SUPPORTED
48 #define PNG_READ_USER_TRANSFORM_SUPPORTED
49 #define PNG_READ_GAMMA_SUPPORTED
50 #define PNG_GAMMA_SUPPORTED
51 #define PNG_COLORSPACE_SUPPORTED
52 #define PNG_READ_EXPAND_SUPPORTED
53 #define PNG_READ_STRIP_16_TO_8_SUPPORTED
54 #define PNG_READ_FILLER_SUPPORTED
55 #define PNG_READ_BGR_SUPPORTED
56 #define PNG_READ_STRIP_ALPHA_SUPPORTED
57 #define PNG_READ_GRAY_TO_RGB_SUPPORTED
58 #define PNG_gAMA_SUPPORTED
59 #define PNG_FLOATING_POINT_SUPPORTED
60 #define PNG_ERROR_TEXT_SUPPORTED
61 #define PNG_EASY_ACCESS_SUPPORTED
62 #define PNG_tRNS_SUPPORTED
63 #define PNG_READ_tRNS_SUPPORTED
64 #define PNG_WRITE_tRNS_SUPPORTED
65 #define PNG_WARNINGS_SUPPORTED
66 #define PNG_WRITE_INT_FUNCTIONS_SUPPORTED
67 #define PNG_WRITE_TRANSFORMS_SUPPORTED
68 #define PNG_READ_TRANSFORMS_SUPPORTED
69 #define PNG_INFO_IMAGE_SUPPORTED
70
71 #define PNG_TEXT_SUPPORTED
72 #define PNG_WRITE_TEXT_SUPPORTED
73 #define PNG_tEXt_SUPPORTED
74 #define PNG_READ_tEXt_SUPPORTED
75 #define PNG_WRITE_tEXt_SUPPORTED
76 #define PNG_cHRM_SUPPORTED
77 #define PNG_READ_cHRM_SUPPORTED
78 #define PNG_gAMA_SUPPORTED
79 #define PNG_READ_gAMA_SUPPORTED
80 #define PNG_iCCP_SUPPORTED
81 #define PNG_READ_iCCP_SUPPORTED
82
83 #define PNG_FORMAT_BGR_SUPPORTED
84 #define PNG_WRITE_BGR_SUPPORTED
85
86 #ifdef CHROME_PNG_WRITE_SUPPORT
87 #define PNG_WRITE_SUPPORTED
88 #define PNG_WRITE_FILLER_SUPPORTED
89 #endif
90
91 #define PNG_CORRECT_PALETTE_SUPPORTED
92 #define PNG_GET_PALETTE_MAX_SUPPORTED
93
94 // For NEON support on ARM
95 #ifdef __arm__
96 #define PNG_ALIGNED_MEMORY_SUPPORTED
97 #define PNG_ARM_NEON_CHECK_SUPPORTED
98 #define PNG_ARM_NEON_OPT 2
99 #endif /* __arm__ */
100
101 // For libpng 1.6.3 obtained from scripts/pnglibconf.h.prebuilt.
102 #define PNG_INFLATE_BUF_SIZE 1024
103 #define PNG_ZBUF_SIZE 8192
104 #define PNG_IDAT_READ_SIZE PNG_ZBUF_SIZE
105 #define PNG_Z_DEFAULT_COMPRESSION (-1)
106 #define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0
107 #define PNG_Z_DEFAULT_STRATEGY 1
108 #define PNG_GAMMA_THRESHOLD_FIXED 5000
109 #define PNG_MAX_GAMMA_8 11
110
111
112 /* Mangle names of exported libpng functions so different libpng versions
113 can coexist. It is recommended that if you do this, you give your
114 library a different name such as "libwkpng" instead of "libpng". */
115
116 #define png_64bit_product wk_png_64bit_product
117 #define png_access_version_number wk_png_access_version_number
118 #undef png_benign_error
119 #define png_build_gamma_table wk_png_build_gamma_table
120 #define png_build_grayscale_palette wk_png_build_grayscale_palette
121 #define png_calculate_crc wk_png_calculate_crc
122 #define png_calloc wk_png_calloc
123 #define png_check_IHDR wk_png_check_IHDR
124 #define png_check_cHRM_fixed wk_png_check_cHRM_fixed
125 #define png_check_chunk_name wk_png_check_chunk_name
126 #define png_check_keyword wk_png_check_keyword
127 // No exported on >=1.6.3
128 //#define png_check_sig wk_png_check_sig
129 #undef png_chunk_benign_error
130 #define png_chunk_error wk_png_chunk_error
131 #define png_chunk_warning wk_png_chunk_warning
132 #define png_combine_row wk_png_combine_row
133 #define png_convert_from_struct_tm wk_png_convert_from_struct_tm
134 #define png_convert_from_time_t wk_png_convert_from_time_t
135 #define png_convert_size wk_png_convert_size
136 #define png_convert_to_rfc1123 wk_png_convert_to_rfc1123
137 #define png_correct_palette wk_png_correct_palette
138 #define png_crc_error wk_png_crc_error
139 #define png_crc_finish wk_png_crc_finish
140 #define png_crc_read wk_png_crc_read
141 #define png_create_info_struct wk_png_create_info_struct
142 #define png_create_read_struct wk_png_create_read_struct
143 #define png_create_read_struct_2 wk_png_create_read_struct_2
144 #define png_create_struct wk_png_create_struct
145 #define png_create_struct_2 wk_png_create_struct_2
146 #define png_create_write_struct wk_png_create_write_struct
147 #define png_create_write_struct_2 wk_png_create_write_struct_2
148 #define png_data_freer wk_png_data_freer
149 #define png_decompress_chunk wk_png_decompress_chunk
150 #define png_default_error wk_png_default_error
151 #define png_default_flush wk_png_default_flush
152 #define png_default_read_data wk_png_default_read_data
153 #define png_default_warning wk_png_default_warning
154 #define png_default_write_data wk_png_default_write_data
155 #define png_destroy_info_struct wk_png_destroy_info_struct
156 #define png_destroy_read_struct wk_png_destroy_read_struct
157 #define png_destroy_struct wk_png_destroy_struct
158 #define png_destroy_struct_2 wk_png_destroy_struct_2
159 #define png_destroy_write_struct wk_png_destroy_write_struct
160 #define png_do_background wk_png_do_background
161 #define png_do_bgr wk_png_do_bgr
162 #define png_do_chop wk_png_do_chop
163 #define png_do_dither wk_png_do_dither
164 #define png_do_expand wk_png_do_expand
165 #define png_do_expand_palette wk_png_do_expand_palette
166 #define png_do_gamma wk_png_do_gamma
167 #define png_do_gray_to_rgb wk_png_do_gray_to_rgb
168 #define png_do_invert wk_png_do_invert
169 #define png_do_pack wk_png_do_pack
170 #define png_do_packswap wk_png_do_packswap
171 #define png_do_read_filler wk_png_do_read_filler
172 #define png_do_read_interlace wk_png_do_read_interlace
173 #define png_do_read_intrapixel wk_png_do_read_intrapixel
174 #define png_do_read_invert_alpha wk_png_do_read_invert_alpha
175 #define png_do_read_swap_alpha wk_png_do_read_swap_alpha
176 #define png_do_read_transformations wk_png_do_read_transformations
177 #define png_do_rgb_to_gray wk_png_do_rgb_to_gray
178 #define png_do_shift wk_png_do_shift
179 #define png_do_strip_filler wk_png_do_strip_filler
180 #define png_do_swap wk_png_do_swap
181 #define png_do_unpack wk_png_do_unpack
182 #define png_do_unshift wk_png_do_unshift
183 #define png_do_write_interlace wk_png_do_write_interlace
184 #define png_do_write_intrapixel wk_png_do_write_intrapixel
185 #define png_do_write_invert_alpha wk_png_do_write_invert_alpha
186 #define png_do_write_swap_alpha wk_png_do_write_swap_alpha
187 #define png_do_write_transformations wk_png_do_write_transformations
188 #define png_dummy_mmx_support wk_png_dummy_mmx_support
189 #define png_err wk_png_err
190 #define png_error wk_png_error
191 #define png_flush wk_png_flush
192 #define png_format_buffer wk_png_format_buffer
193 #define png_free wk_png_free
194 #define png_free_data wk_png_free_data
195 #define png_free_default wk_png_free_default
196 #define png_get_IHDR wk_png_get_IHDR
197 #define png_get_PLTE wk_png_get_PLTE
198 #define png_get_asm_flagmask wk_png_get_asm_flagmask
199 #define png_get_asm_flags wk_png_get_asm_flags
200 #define png_get_bKGD wk_png_get_bKGD
201 #define png_get_bit_depth wk_png_get_bit_depth
202 #define png_get_cHRM wk_png_get_cHRM
203 #define png_get_cHRM_fixed wk_png_get_cHRM_fixed
204 #define png_get_channels wk_png_get_channels
205 #define png_get_color_type wk_png_get_color_type
206 #define png_get_compression_buffer_size wk_png_get_compression_buffer_size
207 #define png_get_compression_type wk_png_get_compression_type
208 #define png_get_copyright wk_png_get_copyright
209 #define png_get_error_ptr wk_png_get_error_ptr
210 #define png_get_filter_type wk_png_get_filter_type
211 #define png_get_gAMA wk_png_get_gAMA
212 #define png_get_gAMA_fixed wk_png_get_gAMA_fixed
213 #define png_get_hIST wk_png_get_hIST
214 #define png_get_header_ver wk_png_get_header_ver
215 #define png_get_header_version wk_png_get_header_version
216 #define png_get_iCCP wk_png_get_iCCP
217 #define png_get_image_height wk_png_get_image_height
218 #define png_get_image_width wk_png_get_image_width
219 #undef png_get_int_32
220 #define png_get_interlace_type wk_png_get_interlace_type
221 #define png_get_io_ptr wk_png_get_io_ptr
222 #define png_get_libpng_ver wk_png_get_libpng_ver
223 #define png_get_mem_ptr wk_png_get_mem_ptr
224 #define png_get_mmx_bitdepth_threshold wk_png_get_mmx_bitdepth_threshold
225 #define png_get_mmx_flagmask wk_png_get_mmx_flagmask
226 #define png_get_mmx_rowbytes_threshold wk_png_get_mmx_rowbytes_threshold
227 #define png_get_oFFs wk_png_get_oFFs
228 #define png_get_pCAL wk_png_get_pCAL
229 #define png_get_pHYs wk_png_get_pHYs
230 #define png_get_pHYs_dpi wk_png_get_pHYs_dpi
231 #define png_get_pixel_aspect_ratio wk_png_get_pixel_aspect_ratio
232 #define png_get_pixels_per_inch wk_png_get_pixels_per_inch
233 #define png_get_pixels_per_meter wk_png_get_pixels_per_meter
234 #define png_get_progressive_ptr wk_png_get_progressive_ptr
235 #define png_get_rgb_to_gray_status wk_png_get_rgb_to_gray_status
236 #define png_get_rowbytes wk_png_get_rowbytes
237 #define png_get_rows wk_png_get_rows
238 #define png_get_sBIT wk_png_get_sBIT
239 #define png_get_sCAL wk_png_get_sCAL
240 #define png_get_sCAL_s wk_png_get_sCAL_s
241 #define png_get_sPLT wk_png_get_sPLT
242 #define png_get_sRGB wk_png_get_sRGB
243 #define png_get_signature wk_png_get_signature
244 #define png_get_tIME wk_png_get_tIME
245 #define png_get_tRNS wk_png_get_tRNS
246 #define png_get_text wk_png_get_text
247 #undef png_get_uint_16
248 #define png_get_uint_31 wk_png_get_uint_31
249 #undef png_get_uint_32
250 #define png_get_unknown_chunks wk_png_get_unknown_chunks
251 #define png_get_user_chunk_ptr wk_png_get_user_chunk_ptr
252 #define png_get_user_height_max wk_png_get_user_height_max
253 #define png_get_user_transform_ptr wk_png_get_user_transform_ptr
254 #define png_get_user_width_max wk_png_get_user_width_max
255 #define png_get_valid wk_png_get_valid
256 #define png_get_x_offset_inches wk_png_get_x_offset_inches
257 #define png_get_x_offset_microns wk_png_get_x_offset_microns
258 #define png_get_x_offset_pixels wk_png_get_x_offset_pixels
259 #define png_get_x_pixels_per_inch wk_png_get_x_pixels_per_inch
260 #define png_get_x_pixels_per_meter wk_png_get_x_pixels_per_meter
261 #define png_get_y_offset_inches wk_png_get_y_offset_inches
262 #define png_get_y_offset_microns wk_png_get_y_offset_microns
263 #define png_get_y_offset_pixels wk_png_get_y_offset_pixels
264 #define png_get_y_pixels_per_inch wk_png_get_y_pixels_per_inch
265 #define png_get_y_pixels_per_meter wk_png_get_y_pixels_per_meter
266 #define png_handle_IEND wk_png_handle_IEND
267 #define png_handle_IHDR wk_png_handle_IHDR
268 #define png_handle_PLTE wk_png_handle_PLTE
269 #define png_handle_as_unknown wk_png_handle_as_unknown
270 #define png_handle_bKGD wk_png_handle_bKGD
271 #define png_handle_cHRM wk_png_handle_cHRM
272 #define png_handle_gAMA wk_png_handle_gAMA
273 #define png_handle_hIST wk_png_handle_hIST
274 #define png_handle_iCCP wk_png_handle_iCCP
275 #define png_handle_iTXt wk_png_handle_iTXt
276 #define png_handle_oFFs wk_png_handle_oFFs
277 #define png_handle_pCAL wk_png_handle_pCAL
278 #define png_handle_pHYs wk_png_handle_pHYs
279 #define png_handle_sBIT wk_png_handle_sBIT
280 #define png_handle_sCAL wk_png_handle_sCAL
281 #define png_handle_sPLT wk_png_handle_sPLT
282 #define png_handle_sRGB wk_png_handle_sRGB
283 #define png_handle_tEXt wk_png_handle_tEXt
284 #define png_handle_tIME wk_png_handle_tIME
285 #define png_handle_tRNS wk_png_handle_tRNS
286 #define png_handle_unknown wk_png_handle_unknown
287 #define png_handle_zTXt wk_png_handle_zTXt
288 #define png_inflate wk_png_inflate
289 #define png_info_destroy wk_png_info_destroy
290 #undef png_info_init
291 #define png_info_init_3 wk_png_info_init_3
292 #define png_init_io wk_png_init_io
293 #define png_init_read_transformations wk_png_init_read_transformations
294 #define png_malloc wk_png_malloc
295 #define png_malloc_default wk_png_malloc_default
296 #define png_malloc_warn wk_png_malloc_warn
297 #define png_memcpy_check wk_png_memcpy_check
298 #define png_memset_check wk_png_memset_check
299 #define png_mmx_support wk_png_mmx_support
300 #define png_permit_empty_plte wk_png_permit_empty_plte
301 #define png_permit_mng_features wk_png_permit_mng_features
302 #define png_process_IDAT_data wk_png_process_IDAT_data
303 #define png_process_data wk_png_process_data
304 #define png_process_some_data wk_png_process_some_data
305 #define png_progressive_combine_row wk_png_progressive_combine_row
306 #define png_push_crc_finish wk_png_push_crc_finish
307 #define png_push_crc_skip wk_png_push_crc_skip
308 #define png_push_fill_buffer wk_png_push_fill_buffer
309 #define png_push_handle_iTXt wk_png_push_handle_iTXt
310 #define png_push_handle_tEXt wk_png_push_handle_tEXt
311 #define png_push_handle_unknown wk_png_push_handle_unknown
312 #define png_push_handle_zTXt wk_png_push_handle_zTXt
313 #define png_push_have_end wk_png_push_have_end
314 #define png_push_have_info wk_png_push_have_info
315 #define png_push_have_row wk_png_push_have_row
316 #define png_push_process_row wk_png_push_process_row
317 #define png_push_read_IDAT wk_png_push_read_IDAT
318 #define png_push_read_chunk wk_png_push_read_chunk
319 #define png_push_read_iTXt wk_png_push_read_iTXt
320 #define png_push_read_sig wk_png_push_read_sig
321 #define png_push_read_tEXt wk_png_push_read_tEXt
322 #define png_push_read_zTXt wk_png_push_read_zTXt
323 #define png_push_restore_buffer wk_png_push_restore_buffer
324 #define png_push_save_buffer wk_png_push_save_buffer
325 #define png_read_chunk_header wk_png_read_chunk_header
326 #define png_read_data wk_png_read_data
327 #define png_read_destroy wk_png_read_destroy
328 #define png_read_end wk_png_read_end
329 #define png_read_filter_row wk_png_read_filter_row
330 #define png_read_finish_row wk_png_read_finish_row
331 #define png_read_image wk_png_read_image
332 #define png_read_info wk_png_read_info
333 #undef png_read_init
334 #define png_read_init_2 wk_png_read_init_2
335 #define png_read_init_3 wk_png_read_init_3
336 #define png_read_png wk_png_read_png
337 #define png_read_push_finish_row wk_png_read_push_finish_row
338 #define png_read_row wk_png_read_row
339 #define png_read_rows wk_png_read_rows
340 #define png_read_start_row wk_png_read_start_row
341 #define png_read_transform_info wk_png_read_transform_info
342 #define png_read_update_info wk_png_read_update_info
343 #define png_reset_crc wk_png_reset_crc
344 #define png_reset_zstream wk_png_reset_zstream
345 #define png_save_int_32 wk_png_save_int_32
346 #define png_save_uint_16 wk_png_save_uint_16
347 #define png_save_uint_32 wk_png_save_uint_32
348 #define png_set_IHDR wk_png_set_IHDR
349 #define png_set_PLTE wk_png_set_PLTE
350 #define png_set_add_alpha wk_png_set_add_alpha
351 #define png_set_asm_flags wk_png_set_asm_flags
352 #define png_set_bKGD wk_png_set_bKGD
353 #define png_set_background wk_png_set_background
354 #define png_set_benign_errors wk_png_set_benign_errors
355 #define png_set_bgr wk_png_set_bgr
356 #define png_set_cHRM wk_png_set_cHRM
357 #define png_set_cHRM_fixed wk_png_set_cHRM_fixed
358 #define png_set_compression_buffer_size wk_png_set_compression_buffer_size
359 #define png_set_compression_level wk_png_set_compression_level
360 #define png_set_compression_mem_level wk_png_set_compression_mem_level
361 #define png_set_compression_method wk_png_set_compression_method
362 #define png_set_compression_strategy wk_png_set_compression_strategy
363 #define png_set_compression_window_bits wk_png_set_compression_window_bits
364 #define png_set_crc_action wk_png_set_crc_action
365 #define png_set_dither wk_png_set_dither
366 #define png_set_error_fn wk_png_set_error_fn
367 #define png_set_expand wk_png_set_expand
368 #define png_set_expand_gray_1_2_4_to_8 wk_png_set_expand_gray_1_2_4_to_8
369 #define png_set_filler wk_png_set_filler
370 #define png_set_filter wk_png_set_filter
371 #define png_set_filter_heuristics wk_png_set_filter_heuristics
372 #define png_set_flush wk_png_set_flush
373 #define png_set_gAMA wk_png_set_gAMA
374 #define png_set_gAMA_fixed wk_png_set_gAMA_fixed
375 #define png_set_gamma wk_png_set_gamma
376 #define png_set_gray_1_2_4_to_8 wk_png_set_gray_1_2_4_to_8
377 #define png_set_gray_to_rgb wk_png_set_gray_to_rgb
378 #define png_set_hIST wk_png_set_hIST
379 #define png_set_iCCP wk_png_set_iCCP
380 #define png_set_interlace_handling wk_png_set_interlace_handling
381 #define png_set_invalid wk_png_set_invalid
382 #define png_set_invert_alpha wk_png_set_invert_alpha
383 #define png_set_invert_mono wk_png_set_invert_mono
384 #define png_set_keep_unknown_chunks wk_png_set_keep_unknown_chunks
385 #define png_set_mem_fn wk_png_set_mem_fn
386 #define png_set_mmx_thresholds wk_png_set_mmx_thresholds
387 #define png_set_oFFs wk_png_set_oFFs
388 #define png_set_pCAL wk_png_set_pCAL
389 #define png_set_pHYs wk_png_set_pHYs
390 #define png_set_packing wk_png_set_packing
391 #define png_set_packswap wk_png_set_packswap
392 #define png_set_palette_to_rgb wk_png_set_palette_to_rgb
393 #define png_set_progressive_read_fn wk_png_set_progressive_read_fn
394 #define png_set_read_fn wk_png_set_read_fn
395 #define png_set_read_status_fn wk_png_set_read_status_fn
396 #define png_set_read_user_chunk_fn wk_png_set_read_user_chunk_fn
397 #define png_set_read_user_transform_fn wk_png_set_read_user_transform_fn
398 #define png_set_rgb_to_gray wk_png_set_rgb_to_gray
399 #define png_set_rgb_to_gray_fixed wk_png_set_rgb_to_gray_fixed
400 #define png_set_rows wk_png_set_rows
401 #define png_set_sBIT wk_png_set_sBIT
402 #define png_set_sCAL wk_png_set_sCAL
403 #define png_set_sCAL_s wk_png_set_sCAL_s
404 #define png_set_sPLT wk_png_set_sPLT
405 #define png_set_sRGB wk_png_set_sRGB
406 #define png_set_sRGB_gAMA_and_cHRM wk_png_set_sRGB_gAMA_and_cHRM
407 #define png_set_shift wk_png_set_shift
408 #define png_set_sig_bytes wk_png_set_sig_bytes
409 #define png_set_strip_16 wk_png_set_strip_16
410 #define png_set_strip_alpha wk_png_set_strip_alpha
411 #define png_set_strip_error_numbers wk_png_set_strip_error_numbers
412 #define png_set_swap wk_png_set_swap
413 #define png_set_swap_alpha wk_png_set_swap_alpha
414 #define png_set_tIME wk_png_set_tIME
415 #define png_set_tRNS wk_png_set_tRNS
416 #define png_set_tRNS_to_alpha wk_png_set_tRNS_to_alpha
417 #define png_set_text wk_png_set_text
418 #define png_set_text_2 wk_png_set_text_2
419 #define png_set_unknown_chunk_location wk_png_set_unknown_chunk_location
420 #define png_set_unknown_chunks wk_png_set_unknown_chunks
421 #define png_set_user_limits wk_png_set_user_limits
422 #define png_set_user_transform_info wk_png_set_user_transform_info
423 #define png_set_write_fn wk_png_set_write_fn
424 #define png_set_write_status_fn wk_png_set_write_status_fn
425 #define png_set_write_user_transform_fn wk_png_set_write_user_transform_fn
426 #define png_sig_cmp wk_png_sig_cmp
427 #define png_start_read_image wk_png_start_read_image
428 #define png_text_compress wk_png_text_compress
429 #define png_warning wk_png_warning
430 #define png_write_IDAT wk_png_write_IDAT
431 #define png_write_IEND wk_png_write_IEND
432 #define png_write_IHDR wk_png_write_IHDR
433 #define png_write_PLTE wk_png_write_PLTE
434 #define png_write_bKGD wk_png_write_bKGD
435 #define png_write_cHRM wk_png_write_cHRM
436 #define png_write_cHRM_fixed wk_png_write_cHRM_fixed
437 #define png_write_chunk wk_png_write_chunk
438 #define png_write_chunk_data wk_png_write_chunk_data
439 #define png_write_chunk_end wk_png_write_chunk_end
440 #define png_write_chunk_start wk_png_write_chunk_start
441 #define png_write_compressed_data_out wk_png_write_compressed_data_out
442 #define png_write_data wk_png_write_data
443 #define png_write_destroy wk_png_write_destroy
444 #define png_write_end wk_png_write_end
445 #define png_write_filtered_row wk_png_write_filtered_row
446 #define png_write_find_filter wk_png_write_find_filter
447 #define png_write_finish_row wk_png_write_finish_row
448 #define png_write_flush wk_png_write_flush
449 #define png_write_gAMA wk_png_write_gAMA
450 #define png_write_gAMA_fixed wk_png_write_gAMA_fixed
451 #define png_write_hIST wk_png_write_hIST
452 #define png_write_iCCP wk_png_write_iCCP
453 #define png_write_iTXt wk_png_write_iTXt
454 #define png_write_image wk_png_write_image
455 #define png_write_info wk_png_write_info
456 #define png_write_info_before_PLTE wk_png_write_info_before_PLTE
457 #undef png_write_init
458 #define png_write_init_2 wk_png_write_init_2
459 #define png_write_init_3 wk_png_write_init_3
460 #define png_write_oFFs wk_png_write_oFFs
461 #define png_write_pCAL wk_png_write_pCAL
462 #define png_write_pHYs wk_png_write_pHYs
463 #define png_write_png wk_png_write_png
464 #define png_write_row wk_png_write_row
465 #define png_write_rows wk_png_write_rows
466 #define png_write_sBIT wk_png_write_sBIT
467 #define png_write_sCAL wk_png_write_sCAL
468 #define png_write_sCAL_s wk_png_write_sCAL_s
469 #define png_write_sPLT wk_png_write_sPLT
470 #define png_write_sRGB wk_png_write_sRGB
471 #define png_write_sig wk_png_write_sig
472 #define png_write_start_row wk_png_write_start_row
473 #define png_write_tEXt wk_png_write_tEXt
474 #define png_write_tIME wk_png_write_tIME
475 #define png_write_tRNS wk_png_write_tRNS
476 #define png_write_zTXt wk_png_write_zTXt
477 #define png_zalloc wk_png_zalloc
478 #define png_zfree wk_png_zfree
479
480 #endif // CHROME_THIRD_PARTY_LIBPNG_PNGLIBCONF_H__
OLDNEW
« no previous file with comments | « third_party/libpng/pnginfo.h ('k') | third_party/libpng/pngmem.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698