xref: /aosp_15_r20/external/libpng/contrib/pngminim/decoder/pngusr.h (revision a67afe4df73cf47866eedc69947994b8ff839aba)
1*a67afe4dSAndroid Build Coastguard Worker /* minrdpngconf.h: headers to make a minimal png-read-only library
2*a67afe4dSAndroid Build Coastguard Worker  *
3*a67afe4dSAndroid Build Coastguard Worker  * Copyright (c) 2007, 2010-2013 Glenn Randers-Pehrson
4*a67afe4dSAndroid Build Coastguard Worker  *
5*a67afe4dSAndroid Build Coastguard Worker  * This code is released under the libpng license.
6*a67afe4dSAndroid Build Coastguard Worker  * For conditions of distribution and use, see the disclaimer
7*a67afe4dSAndroid Build Coastguard Worker  * and license in png.h
8*a67afe4dSAndroid Build Coastguard Worker  *
9*a67afe4dSAndroid Build Coastguard Worker  * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson
10*a67afe4dSAndroid Build Coastguard Worker  */
11*a67afe4dSAndroid Build Coastguard Worker 
12*a67afe4dSAndroid Build Coastguard Worker #ifndef MINRDPNGCONF_H
13*a67afe4dSAndroid Build Coastguard Worker #define MINRDPNGCONF_H
14*a67afe4dSAndroid Build Coastguard Worker 
15*a67afe4dSAndroid Build Coastguard Worker /* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */
16*a67afe4dSAndroid Build Coastguard Worker 
17*a67afe4dSAndroid Build Coastguard Worker /* List options to turn off features of the build that do not
18*a67afe4dSAndroid Build Coastguard Worker  * affect the API (so are not recorded in pnglibconf.h)
19*a67afe4dSAndroid Build Coastguard Worker  */
20*a67afe4dSAndroid Build Coastguard Worker 
21*a67afe4dSAndroid Build Coastguard Worker #define PNG_ALIGN_TYPE PNG_ALIGN_NONE
22*a67afe4dSAndroid Build Coastguard Worker 
23*a67afe4dSAndroid Build Coastguard Worker #endif /* MINRDPNGCONF_H */
24