diff options
author | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2010-07-29 20:28:36 -0500 |
---|---|---|
committer | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2010-07-29 20:28:36 -0500 |
commit | dbe0c9d8c748d2311ea1c086e441a7fe3a9b03c8 (patch) | |
tree | 519ba75fca11c14a2525b5381d15ceccf09aea67 /contrib/pngminim/decoder/pngusr.dfa | |
parent | f01459fd4011d15412047a35d0301adaae05bc96 (diff) | |
download | libpng-dbe0c9d8c748d2311ea1c086e441a7fe3a9b03c8.tar.gz |
[devel] Use FIXED_POINT in contrib/pngminim/decoder and encoder
Diffstat (limited to 'contrib/pngminim/decoder/pngusr.dfa')
-rw-r--r-- | contrib/pngminim/decoder/pngusr.dfa | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/pngminim/decoder/pngusr.dfa b/contrib/pngminim/decoder/pngusr.dfa index ec4495e5d..a8ccec26a 100644 --- a/contrib/pngminim/decoder/pngusr.dfa +++ b/contrib/pngminim/decoder/pngusr.dfa @@ -15,8 +15,14 @@ everything = off option SEQUENTIAL_READ on # You must choose fixed or floating point arithmetic: -option FLOATING_POINT on -# option FIXED_POINT on +# option FLOATING_POINT on +option FIXED_POINT on + +# You must chose the internal fixed point implementation or to +# use the system floating point. The latter is considerably +# smaller (by about 1kbyte on an x86 system): +# option FLOATING_ARITHMETIC on +option FLOATING_ARITHMETIC off # Your program will probably need other options. The example # program here, pngm2pnm, requires the following. Take a look |