├── debian ├── compat ├── docs ├── source │ ├── format │ └── lintian-overrides ├── libsdl2-image.install ├── libsdl2-image-dev.examples ├── libsdl2-image.lintian-overrides ├── libsdl2-image-dev.install ├── watch ├── examples │ └── Makefile └── rules ├── external ├── tiff-4.2.0 │ ├── VERSION │ ├── RELEASE-DATE │ ├── libtiff │ │ ├── libtiff.map │ │ ├── libtiffxx.map │ │ └── tiffvers.h │ ├── contrib │ │ ├── README │ │ ├── iptcutil │ │ │ └── test.iptc │ │ ├── dbs │ │ │ ├── xtiff │ │ │ │ ├── patchlevel.h │ │ │ │ └── README │ │ │ └── README │ │ ├── ras │ │ │ └── README │ │ ├── addtiffo │ │ │ └── Makefile.vc │ │ └── tags │ │ │ └── listtif.c │ ├── html │ │ └── images │ │ │ ├── back.gif │ │ │ ├── bali.jpg │ │ │ ├── cat.gif │ │ │ ├── cover.jpg │ │ │ ├── dave.gif │ │ │ ├── info.gif │ │ │ ├── jello.jpg │ │ │ ├── jim.gif │ │ │ ├── note.gif │ │ │ ├── quad.jpg │ │ │ ├── ring.gif │ │ │ ├── cramps.gif │ │ │ ├── oxford.gif │ │ │ ├── strike.gif │ │ │ ├── warning.gif │ │ │ └── smallliz.jpg │ ├── test │ │ ├── images │ │ │ ├── rgb-3c-16b.ppm │ │ │ ├── rgb-3c-8b.ppm │ │ │ ├── rgb-3c-8b.tiff │ │ │ ├── testfax4.tiff │ │ │ ├── rgb-3c-16b.tiff │ │ │ ├── logluv-3c-16b.tiff │ │ │ ├── miniswhite-1c-1b.g3 │ │ │ ├── palette-1c-1b.tiff │ │ │ ├── palette-1c-4b.tiff │ │ │ ├── palette-1c-8b.tiff │ │ │ ├── quad-tile.jpg.tiff │ │ │ ├── lzw-single-strip.tiff │ │ │ ├── minisblack-1c-8b.pgm │ │ │ ├── minisblack-1c-8b.tiff │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ ├── quad-lzw-compat.tiff │ │ │ ├── minisblack-1c-16b.tiff │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ ├── deflate-last-strip-extra-data.tiff │ │ │ ├── ojpeg_chewey_subsamp21_multi_strip.tiff │ │ │ ├── ojpeg_single_strip_no_rowsperstrip.tiff │ │ │ ├── ojpeg_zackthecat_subsamp22_single_strip.tiff │ │ │ └── README.txt │ │ ├── refs │ │ │ ├── o-testfax4.tiff │ │ │ └── o-deflate-last-strip-extra-data.tiff │ │ ├── rational_precision2double.c │ │ ├── tiffdump.sh │ │ ├── tiff2pdf.sh │ │ ├── tiffinfo.sh │ │ ├── tiffcp-g3.sh │ │ ├── tiffcp-g4.sh │ │ ├── ppm2tiff_pbm.sh │ │ ├── ppm2tiff_pgm.sh │ │ ├── tiffcp-lzw-compat.sh │ │ ├── tiffcp-g3-1d.sh │ │ ├── tiffcp-g3-2d.sh │ │ ├── tiffcp-lzw-scanline-decode.sh │ │ ├── tiff2bw-rgb-3c-8b.sh │ │ ├── tiff2rgba-rgb-3c-16b.sh │ │ ├── tiff2rgba-rgb-3c-8b.sh │ │ ├── tiff2bw-palette-1c-8b.sh │ │ ├── tiffcp-g3-1d-fill.sh │ │ ├── tiff2bw-quad-lzw-compat.sh │ │ ├── tiff2rgba-logluv-3c-16b.sh │ │ ├── tiff2rgba-palette-1c-1b.sh │ │ ├── tiff2rgba-palette-1c-4b.sh │ │ ├── tiff2rgba-palette-1c-8b.sh │ │ ├── tiff2rgba-quad-tile.jpg.sh │ │ ├── tiffcp-g3-2d-fill.sh │ │ ├── tiffcrop-R90-rgb-3c-16b.sh │ │ ├── tiffcrop-R90-rgb-3c-8b.sh │ │ ├── tiff2rgba-minisblack-1c-8b.sh │ │ ├── tiff2rgba-miniswhite-1c-1b.sh │ │ ├── tiffcrop-R90-logluv-3c-16b.sh │ │ ├── tiffcrop-R90-palette-1c-1b.sh │ │ ├── tiffcrop-R90-palette-1c-4b.sh │ │ ├── tiffcrop-R90-palette-1c-8b.sh │ │ ├── tiff2rgba-minisblack-1c-16b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-8b.sh │ │ ├── tiffcrop-R90-minisblack-1c-8b.sh │ │ ├── tiffcrop-R90-miniswhite-1c-1b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-16b.sh │ │ ├── tiffcrop-R90-minisblack-1c-16b.sh │ │ ├── tiffcrop-extract-rgb-3c-8b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-8b.sh │ │ ├── tiff2rgba-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-doubleflip-logluv-3c-16b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-1b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-4b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-8b.sh │ │ ├── tiffcrop-extract-rgb-3c-16b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-8b.sh │ │ ├── tiffcrop-doubleflip-miniswhite-1c-1b.sh │ │ ├── tiffcp-logluv.sh │ │ ├── tiffcrop-R90-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-16b.sh │ │ ├── tiffcrop-extract-logluv-3c-16b.sh │ │ ├── tiffcrop-extract-palette-1c-1b.sh │ │ ├── tiffcrop-extract-palette-1c-4b.sh │ │ ├── tiffcrop-extract-palette-1c-8b.sh │ │ ├── tiffcrop-extractz14-logluv-3c-16b.sh │ │ ├── tiffcrop-extractz14-palette-1c-1b.sh │ │ ├── tiffcrop-extractz14-palette-1c-4b.sh │ │ ├── tiffcrop-extractz14-palette-1c-8b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-8b.sh │ │ ├── tiffcrop-extractz14-miniswhite-1c-1b.sh │ │ ├── tiff2ps-PS2.sh │ │ ├── tiff2ps-PS3.sh │ │ ├── tiffcrop-extract-minisblack-1c-16b.sh │ │ ├── tiffcrop-extract-minisblack-1c-8b.sh │ │ ├── tiffcrop-extract-miniswhite-1c-1b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh │ │ ├── tiff2ps-EPS1.sh │ │ ├── tiffcp-thumbnail.sh │ │ ├── tiff2rgba-ojpeg_chewey_subsamp21_multi_strip.sh │ │ ├── tiff2rgba-ojpeg_single_strip_no_rowsperstrip.sh │ │ ├── tiffcrop-extract-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-extractz14-minisblack-2c-8b-alpha.sh │ │ ├── tiff2rgba-ojpeg_zackthecat_subsamp22_single_strip.sh │ │ ├── ppm2tiff_ppm.sh │ │ ├── tiff2ps-PS1.sh │ │ ├── tiffcp-split.sh │ │ ├── fax2tiff.sh │ │ ├── tiffcp-split-join.sh │ │ └── testfax4.sh │ ├── build │ │ └── README │ ├── autogen.sh │ ├── port │ │ └── dummy.c │ ├── libtiff-4.pc.in │ ├── TODO │ └── m4 │ │ └── ltversion.m4 ├── zlib-1.2.11 │ ├── contrib │ │ ├── blast │ │ │ ├── test.txt │ │ │ ├── README │ │ │ └── test.pk │ │ ├── infback9 │ │ │ └── README │ │ ├── masmx64 │ │ │ └── bld_ml64.bat │ │ ├── puff │ │ │ └── zeros.raw │ │ ├── dotzlib │ │ │ ├── DotZLib.chm │ │ │ ├── DotZLib │ │ │ │ ├── Deflater.cs │ │ │ │ ├── DotZLib.cs │ │ │ │ ├── Inflater.cs │ │ │ │ ├── CodecBase.cs │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ └── CircularBuffer.cs │ │ │ └── DotZLib.sln │ │ ├── masmx86 │ │ │ ├── bld_ml32.bat │ │ │ └── readme.txt │ │ ├── minizip │ │ │ ├── MiniZip64_Changes.txt │ │ │ ├── minizip.pc.in │ │ │ ├── mztools.h │ │ │ ├── configure.ac │ │ │ ├── iowin32.h │ │ │ ├── make_vms.com │ │ │ └── Makefile.am │ │ ├── delphi │ │ │ └── ZLibConst.pas │ │ ├── testzlib │ │ │ └── testzlib.txt │ │ ├── untgz │ │ │ └── Makefile.msc │ │ ├── iostream3 │ │ │ └── TODO │ │ ├── ada │ │ │ └── zlib.gpr │ │ ├── iostream │ │ │ └── test.cpp │ │ ├── iostream2 │ │ │ └── zstream_test.cpp │ │ └── vstudio │ │ │ └── vc10 │ │ │ ├── miniunz.vcxproj.filters │ │ │ └── minizip.vcxproj.filters │ ├── zlib.3.pdf │ ├── old │ │ ├── README │ │ └── os2 │ │ │ └── zlib.def │ ├── win32 │ │ └── VisualC.txt │ ├── nintendods │ │ └── README │ ├── zlib.pc.in │ ├── zlib.pc.cmakein │ ├── make-cross-x86.sh │ ├── make-cross-x64.sh │ ├── inffast.h │ └── gzclose.c ├── jpeg-9d │ ├── libjpeg.map │ ├── testimg.bmp │ ├── testimg.gif │ ├── testimg.jpg │ ├── testimg.ppm │ ├── makeadsw.vc6 │ ├── makeasln.v16 │ ├── makecdep.vc6 │ ├── makecdsp.vc6 │ ├── makecfil.v16 │ ├── makecmak.vc6 │ ├── makecvcx.v16 │ ├── makeddep.vc6 │ ├── makeddsp.vc6 │ ├── makedfil.v16 │ ├── makedmak.vc6 │ ├── makedvcx.v16 │ ├── makejdep.vc6 │ ├── makejdsp.vc6 │ ├── makejdsw.vc6 │ ├── makejfil.v16 │ ├── makejmak.vc6 │ ├── makejsln.v16 │ ├── makejvcx.v16 │ ├── makerdep.vc6 │ ├── makerdsp.vc6 │ ├── makerfil.v16 │ ├── makermak.vc6 │ ├── makervcx.v16 │ ├── maketdep.vc6 │ ├── maketdsp.vc6 │ ├── maketfil.v16 │ ├── maketmak.vc6 │ ├── maketvcx.v16 │ ├── makewdep.vc6 │ ├── makewdsp.vc6 │ ├── makewfil.v16 │ ├── makewmak.vc6 │ ├── makewvcx.v16 │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── makvms.opt │ ├── libjpeg.pc.in │ └── jversion.h ├── libwebp-1.0.3 │ ├── autogen.sh │ ├── examples │ │ ├── test.webp │ │ └── test_ref.ppm │ ├── swig │ │ └── libwebp.jar │ ├── webp_js │ │ ├── test_webp_js.webp │ │ └── test_webp_wasm.webp │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── Makefile.am │ ├── codereview.settings │ ├── src │ │ ├── libwebp.pc.in │ │ ├── demux │ │ │ ├── libwebpdemux.pc.in │ │ │ └── Makefile.am │ │ ├── libwebpdecoder.pc.in │ │ └── mux │ │ │ ├── libwebpmux.pc.in │ │ │ └── Makefile.am │ ├── man │ │ └── Makefile.am │ ├── cmake │ │ └── WebPConfig.cmake.in │ ├── gradle.properties │ ├── doc │ │ └── TODO │ ├── m4 │ │ └── ltversion.m4 │ └── extras │ │ └── webp_to_sdl.h ├── libpng-1.6.37 │ ├── contrib │ │ ├── oss-fuzz │ │ │ ├── libpng_read_fuzzer.options │ │ │ └── png.dict │ │ ├── pngminus │ │ │ ├── pngminus.bat │ │ │ ├── pngminus.sh │ │ │ ├── CMakeLists.txt │ │ │ └── CHANGES.txt │ │ ├── pngsuite │ │ │ ├── interlaced │ │ │ │ ├── README │ │ │ │ ├── ibasn0g01.png │ │ │ │ ├── ibasn0g02.png │ │ │ │ ├── ibasn0g04.png │ │ │ │ ├── ibasn3p01.png │ │ │ │ ├── ibasn3p02.png │ │ │ │ ├── ibasn3p04.png │ │ │ │ ├── iftbbn0g01.png │ │ │ │ ├── iftbbn0g02.png │ │ │ │ └── iftbbn0g04.png │ │ │ ├── basn0g01.png │ │ │ ├── basn0g02.png │ │ │ ├── basn0g04.png │ │ │ ├── basn0g08.png │ │ │ ├── basn0g16.png │ │ │ ├── basn2c08.png │ │ │ ├── basn2c16.png │ │ │ ├── basn3p01.png │ │ │ ├── basn3p02.png │ │ │ ├── basn3p04.png │ │ │ ├── basn3p08.png │ │ │ ├── basn4a08.png │ │ │ ├── basn4a16.png │ │ │ ├── basn6a08.png │ │ │ ├── basn6a16.png │ │ │ ├── ftbbn0g01.png │ │ │ ├── ftbbn0g02.png │ │ │ ├── ftbbn0g04.png │ │ │ ├── ftbbn2c16.png │ │ │ ├── ftbbn3p08.png │ │ │ ├── ftbgn2c16.png │ │ │ ├── ftbgn3p08.png │ │ │ ├── ftbrn2c08.png │ │ │ ├── ftbwn0g16.png │ │ │ ├── ftbwn3p08.png │ │ │ ├── ftbyn3p08.png │ │ │ ├── ftp0n0g08.png │ │ │ ├── ftp0n2c08.png │ │ │ ├── ftp0n3p08.png │ │ │ ├── ftp1n3p08.png │ │ │ ├── ibasn0g08.png │ │ │ ├── ibasn0g16.png │ │ │ ├── ibasn2c08.png │ │ │ ├── ibasn2c16.png │ │ │ ├── ibasn3p08.png │ │ │ ├── ibasn4a08.png │ │ │ ├── ibasn4a16.png │ │ │ ├── ibasn6a08.png │ │ │ ├── ibasn6a16.png │ │ │ ├── iftbbn2c16.png │ │ │ ├── iftbbn3p08.png │ │ │ ├── iftbgn2c16.png │ │ │ ├── iftbgn3p08.png │ │ │ ├── iftbrn2c08.png │ │ │ ├── iftbwn0g16.png │ │ │ ├── iftbwn3p08.png │ │ │ ├── iftbyn3p08.png │ │ │ ├── iftp0n0g08.png │ │ │ ├── iftp0n2c08.png │ │ │ ├── iftp0n3p08.png │ │ │ ├── iftp1n3p08.png │ │ │ └── bad_interlace_conversions.txt │ │ ├── gregbook │ │ │ ├── rpng-x.c │ │ │ ├── rpng2-x.c │ │ │ └── toucan.png │ │ ├── testpngs │ │ │ ├── gray-1.png │ │ │ ├── gray-16.png │ │ │ ├── gray-2.png │ │ │ ├── gray-4.png │ │ │ ├── gray-8.png │ │ │ ├── rgb-16.png │ │ │ ├── rgb-8.png │ │ │ ├── palette-1.png │ │ │ ├── palette-2.png │ │ │ ├── palette-4.png │ │ │ ├── palette-8.png │ │ │ ├── rgb-8-1.8.png │ │ │ ├── gray-1-1.8.png │ │ │ ├── gray-1-sRGB.png │ │ │ ├── gray-1-tRNS.png │ │ │ ├── gray-16-1.8.png │ │ │ ├── gray-16-sRGB.png │ │ │ ├── gray-16-tRNS.png │ │ │ ├── gray-2-1.8.png │ │ │ ├── gray-2-sRGB.png │ │ │ ├── gray-2-tRNS.png │ │ │ ├── gray-4-1.8.png │ │ │ ├── gray-4-sRGB.png │ │ │ ├── gray-4-tRNS.png │ │ │ ├── gray-8-1.8.png │ │ │ ├── gray-8-sRGB.png │ │ │ ├── gray-8-tRNS.png │ │ │ ├── gray-alpha-8.png │ │ │ ├── rgb-16-1.8.png │ │ │ ├── rgb-16-sRGB.png │ │ │ ├── rgb-16-tRNS.png │ │ │ ├── rgb-8-linear.png │ │ │ ├── rgb-8-sRGB.png │ │ │ ├── rgb-8-tRNS.png │ │ │ ├── rgb-alpha-16.png │ │ │ ├── rgb-alpha-8.png │ │ │ ├── gray-1-linear.png │ │ │ ├── gray-16-linear.png │ │ │ ├── gray-2-linear.png │ │ │ ├── gray-4-linear.png │ │ │ ├── gray-8-linear.png │ │ │ ├── gray-alpha-16.png │ │ │ ├── palette-1-1.8.png │ │ │ ├── palette-1-sRGB.png │ │ │ ├── palette-1-tRNS.png │ │ │ ├── palette-2-1.8.png │ │ │ ├── palette-2-sRGB.png │ │ │ ├── palette-2-tRNS.png │ │ │ ├── palette-4-1.8.png │ │ │ ├── palette-4-sRGB.png │ │ │ ├── palette-4-tRNS.png │ │ │ ├── palette-8-1.8.png │ │ │ ├── palette-8-sRGB.png │ │ │ ├── palette-8-tRNS.png │ │ │ ├── rgb-16-linear.png │ │ │ ├── rgb-8-1.8-tRNS.png │ │ │ ├── crashers │ │ │ │ ├── bad_iCCP.png │ │ │ │ ├── badadler.png │ │ │ │ ├── badcrc.png │ │ │ │ ├── huge_IDAT.png │ │ │ │ ├── huge_bKGD_chunk.png │ │ │ │ ├── huge_cHRM_chunk.png │ │ │ │ ├── huge_eXIf_chunk.png │ │ │ │ ├── huge_gAMA_chunk.png │ │ │ │ ├── huge_hIST_chunk.png │ │ │ │ ├── huge_iCCP_chunk.png │ │ │ │ ├── huge_iTXt_chunk.png │ │ │ │ ├── huge_pCAL_chunk.png │ │ │ │ ├── huge_pHYs_chunk.png │ │ │ │ ├── huge_sCAL_chunk.png │ │ │ │ ├── huge_sPLT_chunk.png │ │ │ │ ├── huge_sRGB_chunk.png │ │ │ │ ├── huge_sTER_chunk.png │ │ │ │ ├── huge_tEXt_chunk.png │ │ │ │ ├── huge_tIME_chunk.png │ │ │ │ ├── huge_zTXt_chunk.png │ │ │ │ ├── empty_ancillary_chunks.png │ │ │ │ ├── huge_juNk_safe_to_copy.png │ │ │ │ └── huge_juNK_unsafe_to_copy.png │ │ │ ├── gray-1-1.8-tRNS.png │ │ │ ├── gray-1-sRGB-tRNS.png │ │ │ ├── gray-16-1.8-tRNS.png │ │ │ ├── gray-16-sRGB-tRNS.png │ │ │ ├── gray-2-1.8-tRNS.png │ │ │ ├── gray-2-sRGB-tRNS.png │ │ │ ├── gray-4-1.8-tRNS.png │ │ │ ├── gray-4-sRGB-tRNS.png │ │ │ ├── gray-8-1.8-tRNS.png │ │ │ ├── gray-8-sRGB-tRNS.png │ │ │ ├── gray-alpha-16-1.8.png │ │ │ ├── gray-alpha-8-1.8.png │ │ │ ├── gray-alpha-8-sRGB.png │ │ │ ├── palette-1-linear.png │ │ │ ├── palette-2-linear.png │ │ │ ├── palette-4-linear.png │ │ │ ├── palette-8-linear.png │ │ │ ├── rgb-16-1.8-tRNS.png │ │ │ ├── rgb-16-sRGB-tRNS.png │ │ │ ├── rgb-8-linear-tRNS.png │ │ │ ├── rgb-8-sRGB-tRNS.png │ │ │ ├── rgb-alpha-16-1.8.png │ │ │ ├── rgb-alpha-16-sRGB.png │ │ │ ├── rgb-alpha-8-1.8.png │ │ │ ├── rgb-alpha-8-sRGB.png │ │ │ ├── gray-1-linear-tRNS.png │ │ │ ├── gray-16-linear-tRNS.png │ │ │ ├── gray-2-linear-tRNS.png │ │ │ ├── gray-4-linear-tRNS.png │ │ │ ├── gray-8-linear-tRNS.png │ │ │ ├── gray-alpha-16-sRGB.png │ │ │ ├── gray-alpha-8-linear.png │ │ │ ├── palette-1-1.8-tRNS.png │ │ │ ├── palette-1-sRGB-tRNS.png │ │ │ ├── palette-2-1.8-tRNS.png │ │ │ ├── palette-2-sRGB-tRNS.png │ │ │ ├── palette-4-1.8-tRNS.png │ │ │ ├── palette-4-sRGB-tRNS.png │ │ │ ├── palette-8-1.8-tRNS.png │ │ │ ├── palette-8-sRGB-tRNS.png │ │ │ ├── rgb-16-linear-tRNS.png │ │ │ ├── rgb-alpha-16-linear.png │ │ │ ├── rgb-alpha-8-linear.png │ │ │ ├── gray-alpha-16-linear.png │ │ │ ├── palette-1-linear-tRNS.png │ │ │ ├── palette-2-linear-tRNS.png │ │ │ ├── palette-4-linear-tRNS.png │ │ │ └── palette-8-linear-tRNS.png │ │ ├── visupng │ │ │ ├── VisualPng.ico │ │ │ ├── VisualPng.png │ │ │ ├── VisualPng.dsw │ │ │ └── resource.h │ │ ├── pngminim │ │ │ ├── README │ │ │ ├── encoder │ │ │ │ ├── README │ │ │ │ └── pngusr.h │ │ │ ├── decoder │ │ │ │ ├── README │ │ │ │ └── pngusr.h │ │ │ └── preader │ │ │ │ ├── README │ │ │ │ └── pngusr.h │ │ ├── README.txt │ │ └── tools │ │ │ └── reindent │ ├── scripts │ │ ├── macro.lst │ │ ├── SCOPTIONS.ppc │ │ ├── libpng.pc.in │ │ ├── sym.c │ │ ├── libpng-config-head.in │ │ ├── vers.c │ │ ├── prefix.c │ │ ├── intprefix.c │ │ └── ltversion.m4 │ ├── tests │ │ ├── pngstest-1.8 │ │ ├── pngstest-none │ │ ├── pngstest-sRGB │ │ ├── pngtest │ │ ├── pngvalid-standard │ │ ├── pngvalid-transform │ │ ├── pngstest-1.8-alpha │ │ ├── pngstest-linear │ │ ├── pngvalid-gamma-sbit │ │ ├── pngstest-linear-alpha │ │ ├── pngstest-none-alpha │ │ ├── pngstest-sRGB-alpha │ │ ├── pngvalid-gamma-16-to-8 │ │ ├── pngvalid-gamma-alpha-mode │ │ ├── pngvalid-gamma-background │ │ ├── pngvalid-gamma-threshold │ │ ├── pngvalid-gamma-transform │ │ ├── pngvalid-progressive-size │ │ ├── pngunknown-sTER │ │ ├── pngunknown-save │ │ ├── pngunknown-vpAg │ │ ├── pngimage-quick │ │ ├── pngunknown-discard │ │ ├── pngunknown-if-safe │ │ ├── pngvalid-progressive-standard │ │ ├── pngvalid-gamma-expand16-alpha-mode │ │ ├── pngvalid-gamma-expand16-background │ │ ├── pngvalid-gamma-expand16-transform │ │ ├── pngunknown-IDAT │ │ ├── pngimage-full │ │ ├── pngvalid-progressive-interlace-standard │ │ ├── pngunknown-sAPI │ │ └── pngtest-badpngs │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngnow.png │ ├── pngtest.png │ ├── TRADEMARK │ ├── libpng.pc.in │ ├── pngusr.dfa │ ├── projects │ │ └── visualc71 │ │ │ └── PRJ0041.mak │ └── libpngpf.3 └── libwebp-1.0.3.patch ├── Xcode ├── Frameworks │ └── webp.framework │ │ ├── Versions │ │ ├── Current │ │ └── A │ │ │ ├── webp │ │ │ └── Resources │ │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ │ └── Info.plist │ │ ├── webp │ │ ├── Headers │ │ └── Resources ├── showimage │ ├── English.lproj │ │ └── InfoPlist.strings │ └── Info-showimage__Upgraded_.plist ├── pkg-support │ ├── resources │ │ └── Welcome.txt │ ├── SDL_image.info │ └── mkpackage.sh └── Info-Framework.plist ├── IMG_tga.c ├── version.rc ├── VisualC ├── Version.rc ├── external │ ├── lib │ │ ├── x64 │ │ │ ├── zlib1.dll │ │ │ ├── libjpeg-9.dll │ │ │ ├── libtiff-5.dll │ │ │ ├── libwebp-7.dll │ │ │ └── libpng16-16.dll │ │ └── x86 │ │ │ ├── zlib1.dll │ │ │ ├── libjpeg-9.dll │ │ │ ├── libtiff-5.dll │ │ │ ├── libwebp-7.dll │ │ │ └── libpng16-16.dll │ └── include │ │ └── tiffvers.h ├── clean.sh ├── showimage │ └── showimage.vcxproj.filters └── resource.h ├── VisualC-WinRT ├── libwebp.def ├── jpeg.def ├── WinRT81_VS2013 │ └── SDL_image-WinRT81.vcxproj.filters ├── WinPhone80_VS2012 │ └── SDL_image-WinPhone80.vcxproj.filters └── WinPhone81_VS2013 │ └── SDL_image-WinPhone81.vcxproj.filters ├── autogen.sh ├── SDL2_image.pc.in ├── .hgignore ├── README-emscripten.txt ├── acinclude └── ltversion.m4 └── .hgtags /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.txt 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/VERSION: -------------------------------------------------------------------------------- 1 | 4.2.0 2 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20201219 2 | -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /debian/libsdl2-image.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/lib*.so.* 2 | -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/webp: -------------------------------------------------------------------------------- 1 | Versions/Current/webp -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /IMG_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/IMG_tga.c -------------------------------------------------------------------------------- /debian/libsdl2-image-dev.examples: -------------------------------------------------------------------------------- 1 | debian/examples/Makefile 2 | showimage.c 3 | -------------------------------------------------------------------------------- /external/jpeg-9d/libjpeg.map: -------------------------------------------------------------------------------- 1 | LIBJPEG_9.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/version.rc -------------------------------------------------------------------------------- /VisualC/Version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/Version.rc -------------------------------------------------------------------------------- /external/tiff-4.2.0/libtiff/libtiff.map: -------------------------------------------------------------------------------- 1 | LIBTIFF_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/oss-fuzz/libpng_read_fuzzer.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | dict = png.dict 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/macro.lst: -------------------------------------------------------------------------------- 1 | get_uint_32(buf) 2 | get_uint_16(buf) 3 | get_int_32(buf) 4 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-1.8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" 1.8 none 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-none: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" none none 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-sRGB: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" sRGB none 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngtest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngtest --strict ${srcdir}/pngtest.png 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-standard: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --standard 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --transform 3 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /debian/libsdl2-image.lintian-overrides: -------------------------------------------------------------------------------- 1 | libsdl2-image: package-name-doesnt-match-sonames libSDL2-image 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- 1 | sdl2-image source: package-needs-versioned-debhelper-build-depends 9 2 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminus/pngminus.bat: -------------------------------------------------------------------------------- 1 | make 2 | call png2pnm.bat 3 | call pnm2png.bat 4 | 5 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-1.8-alpha: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" 1.8 alpha 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-linear: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" linear none 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-sbit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-sbit 3 | -------------------------------------------------------------------------------- /external/jpeg-9d/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testimg.bmp -------------------------------------------------------------------------------- /external/jpeg-9d/testimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testimg.gif -------------------------------------------------------------------------------- /external/jpeg-9d/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testimg.jpg -------------------------------------------------------------------------------- /external/jpeg-9d/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testimg.ppm -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-linear-alpha: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" linear alpha 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-none-alpha: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" none alpha 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngstest-sRGB-alpha: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec "${srcdir}/tests/pngstest" sRGB alpha 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-16-to-8: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-16-to-8 3 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/README: -------------------------------------------------------------------------------- 1 | This directory contains various contributions from libtiff users. 2 | 3 | -------------------------------------------------------------------------------- /VisualC-WinRT/libwebp.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | WebPGetFeaturesInternal 3 | WebPDecodeRGBInto 4 | WebPDecodeRGBAInto -------------------------------------------------------------------------------- /debian/libsdl2-image-dev.install: -------------------------------------------------------------------------------- 1 | usr/include 2 | usr/lib/*/lib*.a 3 | usr/lib/*/lib*.so 4 | usr/lib/*/pkgconfig 5 | -------------------------------------------------------------------------------- /external/jpeg-9d/makeadsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makeadsw.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makeasln.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makeasln.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makecdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makecdep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makecdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makecdsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makecfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makecfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makecmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makecmak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makecvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makecvcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makeddep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makeddep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makeddsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makeddsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makedfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makedfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makedmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makedmak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makedvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makedvcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makejdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejdep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makejdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejdsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makejdsw.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejdsw.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makejfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makejmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejmak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makejsln.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejsln.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makejvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makejvcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makerdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makerdep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makerdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makerdsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makerfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makerfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makermak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makermak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makervcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makervcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/maketdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/maketdep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/maketdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/maketdsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/maketfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/maketfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/maketmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/maketmak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/maketvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/maketvcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makewdep.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makewdep.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makewdsp.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makewdsp.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makewfil.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makewfil.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/makewmak.vc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makewmak.vc6 -------------------------------------------------------------------------------- /external/jpeg-9d/makewvcx.v16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/makewvcx.v16 -------------------------------------------------------------------------------- /external/jpeg-9d/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testimgp.jpg -------------------------------------------------------------------------------- /external/jpeg-9d/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testorig.jpg -------------------------------------------------------------------------------- /external/jpeg-9d/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/jpeg-9d/testprog.jpg -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminus/pngminus.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make 3 | sh png2pnm.sh 4 | sh pnm2png.sh 5 | 6 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-threshold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-threshold 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform 3 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/zlib.3.pdf -------------------------------------------------------------------------------- /external/libpng-1.6.37/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/pngbar.jpg -------------------------------------------------------------------------------- /external/libpng-1.6.37/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/pngbar.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/pngnow.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-progressive-size: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --size --progressive-read 3 | -------------------------------------------------------------------------------- /VisualC/external/lib/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x64/zlib1.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x86/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x86/zlib1.dll -------------------------------------------------------------------------------- /external/libpng-1.6.37/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/pngtest.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-sTER: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict sTER=if-safe "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-save: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict default=save "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-vpAg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict vpAg=if-safe "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /VisualC/external/lib/x64/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x64/libjpeg-9.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x64/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x64/libtiff-5.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x64/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x64/libwebp-7.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x86/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x86/libjpeg-9.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x86/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x86/libtiff-5.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x86/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x86/libwebp-7.dll -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/README: -------------------------------------------------------------------------------- 1 | 2 | These images fail the "pngimage-quick" and "pngimage-full" tests. 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngimage-quick: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngimage --list-combos --log "${srcdir}/contrib/pngsuite/"*.png 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-discard: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict default=discard "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-if-safe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict default=if-safe "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-progressive-standard: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --standard --progressive-read 3 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /VisualC/external/lib/x64/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x64/libpng16-16.dll -------------------------------------------------------------------------------- /VisualC/external/lib/x86/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/VisualC/external/lib/x86/libpng16-16.dll -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-expand16-alpha-mode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-alpha-mode --expand16 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-expand16-background: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-background --expand16 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-gamma-expand16-transform: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --gamma-transform --expand16 3 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/examples/test.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/examples/test.webp -------------------------------------------------------------------------------- /external/libwebp-1.0.3/swig/libwebp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/swig/libwebp.jar -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/back.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/bali.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/bali.jpg -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/cat.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/cover.jpg -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/dave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/dave.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/info.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/jello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/jello.jpg -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/jim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/jim.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/note.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/quad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/quad.jpg -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/ring.gif -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/projects/SDL_image/release/ (?:.*/)?SDL_image-?_?([\w+\d+\.]+|\d+)\.tar\.gz debian uupdate 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-IDAT: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict default=discard IDAT=save "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/cramps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/cramps.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/oxford.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/oxford.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/strike.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/strike.gif -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/warning.gif -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/blast/test.pk -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- 1 | ml64.exe /Flinffasx64 /c /Zi inffasx64.asm 2 | ml64.exe /Flgvmat64 /c /Zi gvmat64.asm 3 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngimage-full: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngimage --exhaustive --list-combos --log "${srcdir}/contrib/pngsuite/"*.png 3 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/examples/test_ref.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/examples/test_ref.ppm -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/iptcutil/test.iptc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/contrib/iptcutil/test.iptc -------------------------------------------------------------------------------- /external/tiff-4.2.0/html/images/smallliz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/html/images/smallliz.jpg -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/rgb-3c-16b.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/rgb-3c-16b.ppm -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/rgb-3c-8b.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/rgb-3c-8b.ppm -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/rgb-3c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/rgb-3c-8b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/testfax4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/testfax4.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/refs/o-testfax4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/refs/o-testfax4.tiff -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Versions/A/webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/Xcode/Frameworks/webp.framework/Versions/A/webp -------------------------------------------------------------------------------- /Xcode/showimage/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/Xcode/showimage/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/gregbook/rpng-x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/gregbook/rpng-x.c -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngvalid-progressive-interlace-standard: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngvalid --strict --standard --progressive-read --interlace 3 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/webp_js/test_webp_js.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/webp_js/test_webp_js.webp -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/rgb-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/rgb-3c-16b.tiff -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- 1 | ml /coff /Zi /c /Flmatch686.lst match686.asm 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 3 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/gregbook/rpng2-x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/gregbook/rpng2-x.c -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/gregbook/toucan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/gregbook/toucan.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8.png -------------------------------------------------------------------------------- /external/libwebp-1.0.3/webp_js/test_webp_wasm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/webp_js/test_webp_wasm.webp -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/logluv-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/logluv-3c-16b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/miniswhite-1c-1b.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/miniswhite-1c-1b.g3 -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/palette-1c-1b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/palette-1c-1b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/palette-1c-4b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/palette-1c-4b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/palette-1c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/palette-1c-8b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/quad-tile.jpg.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/quad-tile.jpg.tiff -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn0g01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn0g02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn0g04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn0g08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn0g16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn3p01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn3p02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn3p04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn4a08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn4a16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn6a08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/basn6a16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbbn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbbn0g01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbbn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbbn0g02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbbn0g04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbbn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbbn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbgn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbgn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbrn2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbwn0g16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbwn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftbyn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftp0n0g08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftp0n2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftp0n3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ftp1n3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn0g08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn0g16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn4a08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn4a16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn6a08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/ibasn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/ibasn6a16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/visupng/VisualPng.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/visupng/VisualPng.ico -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/visupng/VisualPng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/visupng/VisualPng.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/SCOPTIONS.ppc: -------------------------------------------------------------------------------- 1 | OPTIMIZE 2 | OPTPEEP 3 | OPTTIME 4 | OPTSCHED 5 | AUTOREGISTER 6 | PARMS=REGISTERS 7 | INCLUDEDIR=hlp:ppc/include 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/build/README: -------------------------------------------------------------------------------- 1 | This directory contains scripts and tools needed to build libtiff library 2 | and its utilities in various environments. 3 | 4 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/lzw-single-strip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/lzw-single-strip.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/minisblack-1c-8b.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/minisblack-1c-8b.pgm -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/minisblack-1c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/minisblack-1c-8b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/miniswhite-1c-1b.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/miniswhite-1c-1b.pbm -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/miniswhite-1c-1b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/miniswhite-1c-1b.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/quad-lzw-compat.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/quad-lzw-compat.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/rational_precision2double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/rational_precision2double.c -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbbn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbbn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbgn2c16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbgn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbrn2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbwn0g16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbwn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftbyn3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftp0n0g08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftp0n2c08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftp0n3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/iftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/iftp1n3p08.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8.png -------------------------------------------------------------------------------- /external/libwebp-1.0.3/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libwebp-1.0.3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/minisblack-1c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/minisblack-1c-16b.tiff -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /VisualC/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete 3 | rm -rvf Win32 */Win32 x64 */x64 4 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-16.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-1.8-tRNS.png -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/bad_iCCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/bad_iCCP.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/badadler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/badadler.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/badcrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/badcrc.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-8-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-8-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-1.8.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-sRGB.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/minisblack-2c-8b-alpha.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/minisblack-2c-8b-alpha.tiff -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /external/zlib-1.2.11/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the contrib/vstudio/ directory. 4 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_IDAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_IDAT.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-1-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-1-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-16-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-16-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-2-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-2-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-4-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-4-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-8-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-8-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-sRGB.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-8-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-1.8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-1.8-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-sRGB-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-sRGB-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-16-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-16-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-16-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/rgb-alpha-8-linear.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -x 3 | libtoolize --force --copy 4 | aclocal -I ./m4 5 | autoheader 6 | automake --foreign --add-missing --copy 7 | autoconf 8 | 9 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffdump.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffdump 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_reader "${TIFFDUMP}" "${IMG_MINISWHITE_1C_1B}" -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/zlib-1.2.11/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn0g04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/ibasn3p04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g01.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g02.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/pngsuite/interlaced/iftbbn0g04.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/gray-alpha-16-linear.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-1-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-1-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-2-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-2-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-4-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-4-linear-tRNS.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/palette-8-linear-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/palette-8-linear-tRNS.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/deflate-last-strip-extra-data.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/deflate-last-strip-extra-data.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/refs/o-deflate-last-strip-extra-data.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/refs/o-deflate-last-strip-extra-data.tiff -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_bKGD_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_bKGD_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_cHRM_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_cHRM_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_eXIf_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_eXIf_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_gAMA_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_gAMA_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_hIST_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_hIST_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_iCCP_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_iCCP_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_iTXt_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_iTXt_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_pCAL_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_pCAL_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_pHYs_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_pHYs_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_sCAL_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_sCAL_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_sPLT_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_sPLT_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_sRGB_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_sRGB_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_sTER_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_sTER_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_tEXt_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_tEXt_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_tIME_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_tIME_chunk.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_zTXt_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_zTXt_chunk.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/dbs/xtiff/patchlevel.h: -------------------------------------------------------------------------------- 1 | #define PATCHLEVEL 0 2 | /* 3 | * Local Variables: 4 | * mode: c 5 | * c-basic-offset: 8 6 | * fill-column: 78 7 | * End: 8 | */ 9 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- 1 | 2 | MiniZip 1.1 was derrived from MiniZip at version 1.01f 3 | 4 | Change in 1.0 (Okt 2009) 5 | - **TODO - Add history** 6 | 7 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngunknown-sAPI: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ./pngunknown --strict bKGD=save cHRM=save gAMA=save all=discard iCCP=save sBIT=save sRGB=save eXIf=save "${srcdir}/pngtest.png" 3 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/ojpeg_chewey_subsamp21_multi_strip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/ojpeg_chewey_subsamp21_multi_strip.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/ojpeg_single_strip_no_rowsperstrip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/ojpeg_single_strip_no_rowsperstrip.tiff -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | aclocal -I acinclude 4 | automake --foreign --include-deps --add-missing --copy 5 | autoconf 6 | 7 | #./configure $* 8 | echo "Now you are ready to run ./configure" 9 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2pdf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiff2pdf 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_stdout "${TIFF2PDF}" "${IMG_MINISWHITE_1C_1B}" "o-tiff2pdf.pdf" -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/empty_ancillary_chunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/empty_ancillary_chunks.png -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_juNk_safe_to_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_juNk_safe_to_copy.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/ojpeg_zackthecat_subsamp22_single_strip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/tiff-4.2.0/test/images/ojpeg_zackthecat_subsamp22_single_strip.tiff -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffinfo.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffinfo. 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_reader "${TIFFINFO} -c -D -d -j -s " "${IMG_MINISBLACK_1C_16B}" 7 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/testpngs/crashers/huge_juNK_unsafe_to_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/external/libpng-1.6.37/contrib/testpngs/crashers/huge_juNK_unsafe_to_copy.png -------------------------------------------------------------------------------- /external/tiff-4.2.0/port/dummy.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Dummy function, just to be ensure that the library always will be created. 3 | */ 4 | 5 | void 6 | libport_dummy_function() 7 | { 8 | return; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDL-mirror/SDL_image/HEAD/Xcode/Frameworks/webp.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /external/libwebp-1.0.3/Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I m4 2 | SUBDIRS = src imageio man 3 | EXTRA_DIST = COPYING autogen.sh 4 | 5 | if BUILD_EXTRAS 6 | SUBDIRS += extras 7 | endif 8 | 9 | SUBDIRS += examples 10 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/codereview.settings: -------------------------------------------------------------------------------- 1 | # This file is used by git cl to get repository specific information. 2 | GERRIT_HOST: True 3 | CODE_REVIEW_SERVER: chromium-review.googlesource.com 4 | GERRIT_SQUASH_UPLOADS: False 5 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/dbs/README: -------------------------------------------------------------------------------- 1 | Wed May 9 09:11:35 PDT 1990 2 | 3 | This directory contains programs from Dan Sears 4 | (dbs@decwrl.dec.com). Contact him directly if 5 | you have questions/problems. 6 | 7 | Sam 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G3 compression 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c g3" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g3.tiff" -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G4 compression 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c g4" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g4.tiff" -------------------------------------------------------------------------------- /Xcode/pkg-support/resources/Welcome.txt: -------------------------------------------------------------------------------- 1 | This package installs the SDL_image library into /Library/Frameworks. You can also install it in 2 | /Library/Frameworks if your access privileges are not high enough. 3 | 4 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngsuite/bad_interlace_conversions.txt: -------------------------------------------------------------------------------- 1 | basn0g01.png 2 | basn0g02.png 3 | basn0g04.png 4 | basn3p01.png 5 | basn3p02.png 6 | basn3p04.png 7 | ftbbn0g01.png 8 | ftbbn0g02.png 9 | ftbbn0g04.png 10 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/ppm2tiff_pbm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ${srcdir:-.}/common.sh 3 | infile="$IMG_MINISWHITE_1C_1B_PBM" 4 | outfile="o-ppm2tiff_pbm.tiff" 5 | f_test_convert "$PPM2TIFF" $infile $outfile 6 | f_tiffinfo_validate $outfile 7 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/ppm2tiff_pgm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ${srcdir:-.}/common.sh 3 | infile="$IMG_MINISBLACK_1C_8B_PGM" 4 | outfile="o-ppm2tiff_pgm.tiff" 5 | f_test_convert "$PPM2TIFF" $infile $outfile 6 | f_tiffinfo_validate $outfile 7 | -------------------------------------------------------------------------------- /external/jpeg-9d/makvms.opt: -------------------------------------------------------------------------------- 1 | ! A pointer to the VAX/VMS C Run-Time Shareable Library. 2 | ! This file is needed by makefile.mms and makefile.vms, 3 | ! but only for the older VAX C compiler. DEC C does not need it. 4 | Sys$Library:VAXCRTL.EXE /Share 5 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-lzw-compat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with LZW Old-LZW decompression 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c none" "${IMG_QUAD_LZW_COMPAT}" "o-tiffcp-lzw-compat.tiff" -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g3-1d.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G3 compression and 1 dimensional encoding. 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c g3:1d" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g3-1d.tiff" -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g3-2d.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G3 compression and 2 dimensional encoding. 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c g3:2d" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g3-2d.tiff" -------------------------------------------------------------------------------- /external/zlib-1.2.11/nintendods/README: -------------------------------------------------------------------------------- 1 | This Makefile requires devkitARM (http://www.devkitpro.org/category/devkitarm/) and works inside "contrib/nds". It is based on a devkitARM template. 2 | 3 | Eduardo Costa 4 | January 3, 2009 5 | 6 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-lzw-scanline-decode.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with LZW decompression 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c none -r 1" "${IMG_LZW_SINGLE_STROP}" "o-tiffcp-lzw-scanline-decode.tiff" -------------------------------------------------------------------------------- /VisualC/showimage/showimage.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/README: -------------------------------------------------------------------------------- 1 | 2 | This demonstrates the use of PNG_USER_CONFIG, pngusr.h and pngusr.dfa 3 | to build minimal decoder, encoder, and progressive reader applications. 4 | 5 | See the individual README and pngusr.dfa files for more explanation. 6 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2bw-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiff2bw-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFF2BW" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-rgb-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-16b.tiff" 5 | outfile="o-tiff2rgba-rgb-3c-16b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiff2rgba-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/libpng.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@/libpng16 5 | 6 | Name: libpng 7 | Description: Loads and saves PNG files 8 | Version: 1.6.37 9 | Libs: -L${libdir} -lpng16 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2bw-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiff2bw-palette-1c-8b.tiff" 6 | f_test_convert "$TIFF2BW" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g3-1d-fill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G3 compression, 1 dimensional 4 | # encoding, and zero-filled boundaries. 5 | # 6 | . ${srcdir:-.}/common.sh 7 | f_test_convert "${TIFFCP} -c g3:1d:fill" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g3-1d-fill.tiff" -------------------------------------------------------------------------------- /VisualC-WinRT/jpeg.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | jpeg_calc_output_dimensions 3 | jpeg_CreateDecompress 4 | jpeg_destroy_decompress 5 | jpeg_finish_decompress 6 | jpeg_read_header 7 | jpeg_read_scanlines 8 | jpeg_resync_to_restart 9 | jpeg_start_decompress 10 | jpeg_std_error 11 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2bw-quad-lzw-compat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/quad-lzw-compat.tiff" 5 | outfile="o-tiff2bw-quad-lzw-compat.tiff" 6 | f_test_convert "$TIFF2BW" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-logluv-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/logluv-3c-16b.tiff" 5 | outfile="o-tiff2rgba-logluv-3c-16b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-palette-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-1b.tiff" 5 | outfile="o-tiff2rgba-palette-1c-1b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-palette-1c-4b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-4b.tiff" 5 | outfile="o-tiff2rgba-palette-1c-4b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiff2rgba-palette-1c-8b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-quad-tile.jpg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/quad-tile.jpg.tiff" 5 | outfile="o-tiff2rgba-quad-tile.jpg.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-g3-2d-fill.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with G3 compression, 2 dimensional 4 | # encoding, and zero-filled boundaries. 5 | # 6 | . ${srcdir:-.}/common.sh 7 | f_test_convert "${TIFFCP} -c g3:2d:fill" "${IMG_MINISWHITE_1C_1B}" "o-tiffcp-g3-2d-fill.tiff" 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-rgb-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-16b.tiff" 5 | outfile="o-tiffcrop-R90-rgb-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiffcrop-R90-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu May 12 17:06:25 CEST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-bin.zip 7 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-minisblack-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-8b.tiff" 5 | outfile="o-tiff2rgba-minisblack-1c-8b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-miniswhite-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/miniswhite-1c-1b.tiff" 5 | outfile="o-tiff2rgba-miniswhite-1c-1b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-logluv-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/logluv-3c-16b.tiff" 5 | outfile="o-tiffcrop-R90-logluv-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-palette-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-1b.tiff" 5 | outfile="o-tiffcrop-R90-palette-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-palette-1c-4b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-4b.tiff" 5 | outfile="o-tiffcrop-R90-palette-1c-4b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiffcrop-R90-palette-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-minisblack-1c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-16b.tiff" 5 | outfile="o-tiff2rgba-minisblack-1c-16b.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiffcrop-doubleflip-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/jpeg-9d/libjpeg.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libjpeg 7 | Description: Reads and writes JPEG files 8 | Version: @JPEG_LIB_VERSION_MAJOR@.@JPEG_LIB_VERSION_MINOR@.0 9 | Libs: -L${libdir} -ljpeg 10 | Cflags: -I${includedir} 11 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-minisblack-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-8b.tiff" 5 | outfile="o-tiffcrop-R90-minisblack-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-miniswhite-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/miniswhite-1c-1b.tiff" 5 | outfile="o-tiffcrop-R90-miniswhite-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-rgb-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-16b.tiff" 5 | outfile="o-tiffcrop-doubleflip-rgb-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This "contrib" directory contains contributions which are not necessarily under 3 | the libpng license, although all are open source. They are not part of 4 | libpng proper and are not used for building the library, although some are used 5 | for testing the library via "make check". 6 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-minisblack-1c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-16b.tiff" 5 | outfile="o-tiffcrop-R90-minisblack-1c-16b.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiffcrop-extract-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-rgb-3c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-8b.tiff" 5 | outfile="o-tiffcrop-extractz14-rgb-3c-8b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/libtiff-4.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libtiff 7 | Description: Tag Image File Format (TIFF) library. 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -ltiff 10 | Libs.private: @tiff_libs_private@ 11 | Cflags: -I${includedir} 12 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-minisblack-2c-8b-alpha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-2c-8b-alpha.tiff" 5 | outfile="o-tiff2rgba-minisblack-2c-8b-alpha.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-logluv-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/logluv-3c-16b.tiff" 5 | outfile="o-tiffcrop-doubleflip-logluv-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-palette-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-1b.tiff" 5 | outfile="o-tiffcrop-doubleflip-palette-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-palette-1c-4b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-4b.tiff" 5 | outfile="o-tiffcrop-doubleflip-palette-1c-4b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiffcrop-doubleflip-palette-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-rgb-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-16b.tiff" 5 | outfile="o-tiffcrop-extract-rgb-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-rgb-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/rgb-3c-16b.tiff" 5 | outfile="o-tiffcrop-extractz14-rgb-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /debian/examples/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for showimage 2 | 3 | CC = gcc 4 | CFLAGS = $(shell sdl2-config --cflags) -Wall -O 5 | LIBS = $(shell sdl2-config --libs) -lSDL2_image 6 | EXE = showimage 7 | 8 | all: $(EXE) 9 | 10 | showimage: showimage.c Makefile 11 | $(CC) -o $@ $@.c $(CFLAGS) $(LIBS) 12 | 13 | clean: 14 | -rm *.o $(EXE) 15 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-minisblack-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-8b.tiff" 5 | outfile="o-tiffcrop-doubleflip-minisblack-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-miniswhite-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/miniswhite-1c-1b.tiff" 5 | outfile="o-tiffcrop-doubleflip-miniswhite-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /SDL2_image.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: @PACKAGE@ 7 | Description: image loading library for Simple DirectMedia Layer 8 | Version: @VERSION@ 9 | Requires: sdl2 >= @SDL_VERSION@ 10 | Libs: -L${libdir} -lSDL2_image 11 | Cflags: -I${includedir}/SDL2 12 | 13 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-logluv.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp with logluv compression 4 | # 5 | . ${srcdir:-.}/common.sh 6 | f_test_convert "${TIFFCP} -c none" "${srcdir}/images/logluv-3c-16b.tiff" "o-tiffcp-logluv-raw.tiff" 7 | f_test_convert "${TIFFCP} -c sgilog" "o-tiffcp-logluv-raw.tiff" "o-tiffcp-logluv-sgilog.tiff" -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-R90-minisblack-2c-8b-alpha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-2c-8b-alpha.tiff" 5 | outfile="o-tiffcrop-R90-minisblack-2c-8b-alpha.tiff" 6 | f_test_convert "$TIFFCROP -R90" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-minisblack-1c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-16b.tiff" 5 | outfile="o-tiffcrop-doubleflip-minisblack-1c-16b.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-logluv-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/logluv-3c-16b.tiff" 5 | outfile="o-tiffcrop-extract-logluv-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-palette-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-1b.tiff" 5 | outfile="o-tiffcrop-extract-palette-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-palette-1c-4b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-4b.tiff" 5 | outfile="o-tiffcrop-extract-palette-1c-4b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiffcrop-extract-palette-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-logluv-3c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/logluv-3c-16b.tiff" 5 | outfile="o-tiffcrop-extractz14-logluv-3c-16b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-palette-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-1b.tiff" 5 | outfile="o-tiffcrop-extractz14-palette-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-palette-1c-4b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-4b.tiff" 5 | outfile="o-tiffcrop-extractz14-palette-1c-4b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-palette-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/palette-1c-8b.tiff" 5 | outfile="o-tiffcrop-extractz14-palette-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/zlib.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | sharedlibdir=@sharedlibdir@ 5 | includedir=@includedir@ 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: @VERSION@ 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-minisblack-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-8b.tiff" 5 | outfile="o-tiffcrop-extractz14-minisblack-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-miniswhite-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/miniswhite-1c-1b.tiff" 5 | outfile="o-tiffcrop-extractz14-miniswhite-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2ps-PS2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffps with PostScript Level 2 output 4 | # 5 | PSFILE=o-tiff2ps-PS2.ps 6 | . ${srcdir:-.}/common.sh 7 | f_test_stdout "${TIFF2PS} -a -p -2" "${IMG_MINISWHITE_1C_1B}" "${PSFILE}" 8 | diff -I '%%CreationDate:.*' -I '%%Title:.*' -u "${REFS}/${PSFILE}" "${PSFILE}" || exit 1 9 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2ps-PS3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffps with PostScript Level 3 output 4 | # 5 | PSFILE=o-tiff2ps-PS3.ps 6 | . ${srcdir:-.}/common.sh 7 | f_test_stdout "${TIFF2PS} -a -p -3" "${IMG_MINISWHITE_1C_1B}" "${PSFILE}" 8 | diff -I '%%CreationDate:.*' -I '%%Title:.*' -u "${REFS}/${PSFILE}" "${PSFILE}" || exit 1 9 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-minisblack-1c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-16b.tiff" 5 | outfile="o-tiffcrop-extract-minisblack-1c-16b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-minisblack-1c-8b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-8b.tiff" 5 | outfile="o-tiffcrop-extract-minisblack-1c-8b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-miniswhite-1c-1b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/miniswhite-1c-1b.tiff" 5 | outfile="o-tiffcrop-extract-miniswhite-1c-1b.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-minisblack-1c-16b.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-1c-16b.tiff" 5 | outfile="o-tiffcrop-extractz14-minisblack-1c-16b.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-2c-8b-alpha.tiff" 5 | outfile="o-tiffcrop-doubleflip-minisblack-2c-8b-alpha.tiff" 6 | f_test_convert "$TIFFCROP -F both" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/libwebp.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libwebp 7 | Description: Library for the WebP graphics format 8 | Version: @PACKAGE_VERSION@ 9 | Cflags: -I${includedir} 10 | Libs: -L${libdir} -lwebp 11 | Libs.private: -lm @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ 12 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2ps-EPS1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffps with PostScript Level 1 encapsulated output 4 | # 5 | PSFILE=o-tiff2ps-EPS1.ps 6 | . ${srcdir:-.}/common.sh 7 | f_test_stdout "${TIFF2PS} -e -1" "${IMG_MINISWHITE_1C_1B}" "${PSFILE}" 8 | diff -I '%%CreationDate:.*' -I '%%Title:.*' -u "${REFS}/${PSFILE}" "${PSFILE}" || exit 1 9 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-thumbnail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for thumbnail 4 | # 5 | . ${srcdir:-.}/common.sh 6 | 7 | outfile1=o-tiffcp-thumbnail-in.tif 8 | outfile2=o-tiffcp-thumbnail-out.tif 9 | f_test_convert "${TIFFCP} -c g3:1d" "${IMG_MINISWHITE_1C_1B}" "${outfile1}" 10 | f_test_convert "${THUMBNAIL}" "${outfile1}" "${outfile2}" -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-ojpeg_chewey_subsamp21_multi_strip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/ojpeg_chewey_subsamp21_multi_strip.tiff" 5 | outfile="o-tiff2rgba-ojpeg_chewey_subsamp21_multi_strip.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-ojpeg_single_strip_no_rowsperstrip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/ojpeg_single_strip_no_rowsperstrip.tiff" 5 | outfile="o-tiff2rgba-ojpeg_single_strip_no_rowsperstrip.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extract-minisblack-2c-8b-alpha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-2c-8b-alpha.tiff" 5 | outfile="o-tiffcrop-extract-minisblack-2c-8b-alpha.tiff" 6 | f_test_convert "$TIFFCROP -U px -E top -X 60 -Y 60" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcrop-extractz14-minisblack-2c-8b-alpha.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/minisblack-2c-8b-alpha.tiff" 5 | outfile="o-tiffcrop-extractz14-minisblack-2c-8b-alpha.tiff" 6 | f_test_convert "$TIFFCROP -E left -Z1:4,2:4" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/minizip.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@/minizip 5 | 6 | Name: minizip 7 | Description: Minizip zip file manipulation library 8 | Requires: 9 | Version: @PACKAGE_VERSION@ 10 | Libs: -L${libdir} -lminizip 11 | Libs.private: -lz 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax:glob 2 | autom4te* 3 | config.cache 4 | config.log 5 | config.status 6 | Makefile 7 | libtool 8 | .deps 9 | .libs 10 | *.lo 11 | *.o 12 | *.la 13 | *.lai 14 | .DS_Store 15 | xcuserdata 16 | *.xcworkspace 17 | SDL2_image.pc 18 | showimage 19 | 20 | # for Visual C++ 21 | Debug 22 | Release 23 | *.user 24 | *.ncb 25 | *.suo 26 | *.sdf 27 | *.opensdf 28 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/dbs/xtiff/README: -------------------------------------------------------------------------------- 1 | xtiff 2.0 2 | 3 | xtiff is a tool for viewing a TIFF file in an X window. It was written to 4 | handle as many different kinds of TIFF files as possible while remaining 5 | simple, portable and efficient. xtiff requires X11 R4, the Athena Widgets 6 | and Sam Leffler's libtiff package (which can be found on ucbvax.berkeley.edu). 7 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/demux/libwebpdemux.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libwebpdemux 7 | Description: Library for parsing the WebP graphics format container 8 | Version: @PACKAGE_VERSION@ 9 | Requires: libwebp >= 0.2.0 10 | Cflags: -I${includedir} 11 | Libs: -L${libdir} -lwebpdemux 12 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2rgba-ojpeg_zackthecat_subsamp22_single_strip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Generated file, master is Makefile.am 3 | . ${srcdir:-.}/common.sh 4 | infile="$srcdir/images/ojpeg_zackthecat_subsamp22_single_strip.tiff" 5 | outfile="o-tiff2rgba-ojpeg_zackthecat_subsamp22_single_strip.tiff" 6 | f_test_convert "$TIFF2RGBA" $infile $outfile 7 | f_tiffinfo_validate $outfile 8 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/ppm2tiff_ppm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ${srcdir:-.}/common.sh 3 | infile="$IMG_RGB_3C_8B_PPM" 4 | outfile="o-ppm2tiff_8b_ppm.tiff" 5 | f_test_convert "$PPM2TIFF" $infile $outfile 6 | f_tiffinfo_validate $outfile 7 | infile="$IMG_RGB_3C_16B_PPM" 8 | outfile="o-ppm2tiff_16b_ppm.tiff" 9 | f_test_convert "$PPM2TIFF" $infile $outfile 10 | f_tiffinfo_validate $outfile 11 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/zlib.pc.cmakein: -------------------------------------------------------------------------------- 1 | prefix=@CMAKE_INSTALL_PREFIX@ 2 | exec_prefix=@CMAKE_INSTALL_PREFIX@ 3 | libdir=@INSTALL_LIB_DIR@ 4 | sharedlibdir=@INSTALL_LIB_DIR@ 5 | includedir=@INSTALL_INC_DIR@ 6 | 7 | Name: zlib 8 | Description: zlib compression library 9 | Version: @VERSION@ 10 | 11 | Requires: 12 | Libs: -L${libdir} -L${sharedlibdir} -lz 13 | Cflags: -I${includedir} 14 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/TRADEMARK: -------------------------------------------------------------------------------- 1 | TRADEMARK 2 | ========= 3 | 4 | The name "libpng" has not been registered by the Copyright owners 5 | as a trademark in any jurisdiction. However, because libpng has 6 | been distributed and maintained world-wide, continually since 1995, 7 | the Copyright owners claim "common-law trademark protection" in any 8 | jurisdiction where common-law trademark is recognized. 9 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/libpng.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@/libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ 5 | 6 | Name: libpng 7 | Description: Loads and saves PNG files 8 | Version: @PNGLIB_VERSION@ 9 | Requires: zlib 10 | Libs: -L${libdir} -lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ 11 | Libs.private: @LIBS@ 12 | Cflags: -I${includedir} 13 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/libwebpdecoder.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libwebpdecoder 7 | Description: Library for the WebP graphics format (decode only) 8 | Version: @PACKAGE_VERSION@ 9 | Cflags: -I${includedir} 10 | Libs: -L${libdir} -lwebpdecoder 11 | Libs.private: -lm @PTHREAD_CFLAGS@ @PTHREAD_LIBS@ 12 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/mux/libwebpmux.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libwebpmux 7 | Description: Library for manipulating the WebP graphics format container 8 | Version: @PACKAGE_VERSION@ 9 | Requires: libwebp >= 0.2.0 10 | Cflags: -I${includedir} 11 | Libs: -L${libdir} -lwebpmux 12 | Libs.private: -lm 13 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = cwebp.1 dwebp.1 2 | if BUILD_MUX 3 | man_MANS += webpmux.1 4 | endif 5 | if BUILD_GIF2WEBP 6 | man_MANS += gif2webp.1 7 | endif 8 | if BUILD_IMG2WEBP 9 | man_MANS += img2webp.1 10 | endif 11 | if BUILD_VWEBP 12 | man_MANS += vwebp.1 13 | endif 14 | if BUILD_WEBPINFO 15 | man_MANS += webpinfo.1 16 | endif 17 | EXTRA_DIST = $(man_MANS) 18 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/cmake/WebPConfig.cmake.in: -------------------------------------------------------------------------------- 1 | set(WebP_VERSION @PROJECT_VERSION@) 2 | set(WEBP_VERSION ${WebP_VERSION}) 3 | 4 | @PACKAGE_INIT@ 5 | 6 | include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") 7 | 8 | set(WebP_INCLUDE_DIRS "webp") 9 | set(WEBP_INCLUDE_DIRS ${WebP_INCLUDE_DIRS}) 10 | set(WebP_LIBRARIES "@INSTALLED_LIBRARIES@") 11 | set(WEBP_LIBRARIES "${WebP_LIBRARIES}") 12 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/ras/README: -------------------------------------------------------------------------------- 1 | Sun May 19 22:28:16 PDT 1991 2 | 3 | These programs are from Patrick Naughton (naughton@wind.sun.com). 4 | I've tried to update them to reflect changes to the library, but 5 | I am unable to verify that they operate properly, because they 6 | require the Sun pixrect library. 7 | 8 | Please contact Patrick directly if you have questions/problems. 9 | 10 | Sam 11 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/untgz/Makefile.msc: -------------------------------------------------------------------------------- 1 | CC=cl 2 | CFLAGS=-MD 3 | 4 | untgz.exe: untgz.obj ..\..\zlib.lib 5 | $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib 6 | 7 | untgz.obj: untgz.c ..\..\zlib.h 8 | $(CC) $(CFLAGS) -c -I..\.. untgz.c 9 | 10 | ..\..\zlib.lib: 11 | cd ..\.. 12 | $(MAKE) -f win32\makefile.msc 13 | cd contrib\untgz 14 | 15 | clean: 16 | -del untgz.obj 17 | -del untgz.exe 18 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/TODO: -------------------------------------------------------------------------------- 1 | o gif2tiff segaulting on selected images 2 | o tiffcmp read data by strip/tile instead of scanline 3 | o YCbCr sampling support 4 | o extracate colorspace conversion support 5 | o look at isolating all codecs from TIFF library 6 | o JPEG colormode order dependency problem 7 | o Write documentation on how do extend tags, and how the custom field 8 | stuff all works. 9 | 10 | 11 | -------------------------------------------------------------------------------- /Xcode/pkg-support/SDL_image.info: -------------------------------------------------------------------------------- 1 | Title SDL_image 1.2.4 2 | Version 1 3 | Description SDL_image Library for Mac OS X (http://www.libsdl.org/projects/SDL_image) 4 | DefaultLocation /Library/Frameworks 5 | Diskname (null) 6 | DeleteWarning 7 | NeedsAuthorization NO 8 | DisableStop NO 9 | UseUserMask NO 10 | Application NO 11 | Relocatable YES 12 | Required NO 13 | InstallOnly NO 14 | RequiresReboot NO 15 | InstallFat NO 16 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/encoder/README: -------------------------------------------------------------------------------- 1 | This demonstrates the use of PNG_USER_CONFIG and pngusr.h 2 | 3 | The makefile builds a minimal write-only encoder with embedded libpng 4 | and zlib. 5 | 6 | Specify the location of the zlib source (1.2.1 or later) as ZLIBSRC 7 | on the make command line. 8 | 9 | If you prefer to use the shared libraries, go to contrib/pngminus 10 | and build the pnm2png application there. 11 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/make-cross-x86.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | TARGET=i686-w64-mingw32 4 | INSTALL_PATH=/usr/local/$TARGET 5 | export PATH=$PATH:/usr/local/bin 6 | 7 | make -f win32/Makefile.gcc \ 8 | SHARED_MODE=1 \ 9 | LDFLAGS=-static-libgcc \ 10 | PREFIX=$TARGET- \ 11 | prefix=$INSTALL_PATH \ 12 | BINARY_PATH=$INSTALL_PATH/bin \ 13 | INCLUDE_PATH=$INSTALL_PATH/include \ 14 | LIBRARY_PATH=$INSTALL_PATH/lib $* 15 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/decoder/README: -------------------------------------------------------------------------------- 1 | This demonstrates the use of PNG_USER_CONFIG, pngusr.h and pngusr.dfa 2 | 3 | The makefile builds a minimal read-only decoder with embedded libpng 4 | and zlib. 5 | 6 | Specify the location of the zlib source (1.2.1 or later) as ZLIBSRC 7 | on the make command line. 8 | 9 | If you prefer to use the shared libraries, go to contrib/pngminus 10 | and build the png2pnm application there. 11 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiff2ps-PS1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffps with PostScript Level 1 output 4 | # 5 | PSFILE="o-tiff2ps-PS1.ps" 6 | . ${srcdir:-.}/common.sh 7 | f_test_stdout "${TIFF2PS} -a -p -1" "${IMG_MINISWHITE_1C_1B}" "${PSFILE}" 8 | #diff -I '%%(CreationDate|Title):.*' -u "${REFS}/${PSFILE}" "${PSFILE}" || exit 1 9 | diff -I '%%CreationDate:.*' -I '%%Title:.*' -u "${REFS}/${PSFILE}" "${PSFILE}" || exit 1 10 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/make-cross-x64.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | TARGET=x86_64-w64-mingw32 4 | INSTALL_PATH=/usr/local/$TARGET 5 | export PATH=$PATH:/usr/local/bin 6 | 7 | make -f win32/Makefile.gcc \ 8 | SHARED_MODE=1 \ 9 | LDFLAGS=-static-libgcc \ 10 | PREFIX=$TARGET- \ 11 | prefix=$INSTALL_PATH \ 12 | BINARY_PATH=$INSTALL_PATH/bin \ 13 | INCLUDE_PATH=$INSTALL_PATH/include \ 14 | LIBRARY_PATH=$INSTALL_PATH/lib $* 15 | -------------------------------------------------------------------------------- /VisualC/external/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.2.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20201219 10 | -------------------------------------------------------------------------------- /VisualC/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by Version.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 101 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /external/jpeg-9d/jversion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * jversion.h 3 | * 4 | * Copyright (C) 1991-2020, Thomas G. Lane, Guido Vollbeding. 5 | * This file is part of the Independent JPEG Group's software. 6 | * For conditions of distribution and use, see the accompanying README file. 7 | * 8 | * This file contains software version identification. 9 | */ 10 | 11 | 12 | #define JVERSION "9d 12-Jan-2020" 13 | 14 | #define JCOPYRIGHT "Copyright (C) 2020, Thomas G. Lane, Guido Vollbeding" 15 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/libtiff/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.2.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20201219 10 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-split.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp + tiffsplit 4 | # 5 | # First we use tiffcp to join our test files into a multi-frame TIFF 6 | # and then we use tiffsplit to split them out again. 7 | # 8 | . ${srcdir:-.}/common.sh 9 | conjoined=o-tiffcp-split-conjoined.tif 10 | splitfile=o-tiffcp-split-split- 11 | 12 | f_test_convert "${TIFFCP}" "${IMG_UNCOMPRESSED}" "${conjoined}" 13 | f_test_convert "${TIFFSPLIT}" "${conjoined}" "${splitfile}" -------------------------------------------------------------------------------- /external/zlib-1.2.11/inffast.h: -------------------------------------------------------------------------------- 1 | /* inffast.h -- header to use inffast.c 2 | * Copyright (C) 1995-2003, 2010 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start)); 12 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/sym.c: -------------------------------------------------------------------------------- 1 | 2 | /* sym.c - define format of libpng.sym 3 | * 4 | * Last changed in libpng version 1.6.16 [December 22, 2014] 5 | * Copyright (c) 2011-2014 Glenn Randers-Pehrson 6 | * 7 | * This code is released under the libpng license. 8 | * For conditions of distribution and use, see the disclaimer 9 | * and license in png.h 10 | */ 11 | 12 | #define PNG_EXPORTA(ordinal, type, name, args, attributes)\ 13 | PNG_DFN "@" SYMBOL_PREFIX "@@" name "@" 14 | 15 | #include "../png.h" 16 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/fax2tiff.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for fax2tiff 4 | # 5 | . ${srcdir:-.}/common.sh 6 | infile="${IMAGES}/miniswhite-1c-1b.g3" 7 | outfile="o-fax2tiff.tiff" 8 | rm -f $outfile 9 | echo "$MEMCHECK ${FAX2TIFF} -M -o $outfile $infile" 10 | eval $MEMCHECK ${FAX2TIFF} -M -o $outfile $infile 11 | status=$? 12 | if [ $status != 0 ] ; then 13 | echo "Returned failed status $status!" 14 | echo "Output (if any) is in \"${outfile}\"." 15 | exit $status 16 | fi 17 | f_tiffinfo_validate $outfile 18 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/libpng-config-head.in: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # libpng-config 4 | # provides configuration info for libpng. 5 | 6 | # Copyright (C) 2002 Glenn Randers-Pehrson 7 | 8 | # This code is released under the libpng license. 9 | # For conditions of distribution and use, see the disclaimer 10 | # and license in png.h 11 | 12 | # Modeled after libxml-config. 13 | 14 | version=1.6.37 15 | prefix="" 16 | libdir="" 17 | libs="" 18 | I_opts="" 19 | L_opts="" 20 | R_opts="" 21 | cppflags="" 22 | ccopts="" 23 | ldopts="" 24 | 25 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3.patch: -------------------------------------------------------------------------------- 1 | diff -ruN libwebp-1.0.3.orig/Android.mk libwebp-1.0.3/Android.mk 2 | --- libwebp-1.0.3.orig/Android.mk 2019-07-04 22:32:37.000000000 +0300 3 | +++ libwebp-1.0.3/Android.mk 2019-08-20 14:11:24.000000000 +0300 4 | @@ -273,7 +273,7 @@ 5 | 6 | WEBP_SRC_PATH := $(LOCAL_PATH) 7 | include $(WEBP_SRC_PATH)/imageio/Android.mk 8 | -include $(WEBP_SRC_PATH)/examples/Android.mk 9 | +#include $(WEBP_SRC_PATH)/examples/Android.mk 10 | 11 | ifeq ($(USE_CPUFEATURES),yes) 12 | $(call import-module,android/cpufeatures) 13 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Versions for gradle 11 | BUILD_TOOLS_VERSION=23.0.3 12 | COMPILE_SDK_VERSION=23 13 | ANDROID_GRADLE_PLUGIN_VERSION=1.5.0 14 | GRADLE_DOWNLOAD_TASK_VERSION=2.1.0 15 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/doc/TODO: -------------------------------------------------------------------------------- 1 | , 20111004 2 | 3 | * Determine that normative RFC 2119 terms (MUST, SHOULD, MAY, etc.) are 4 | truly intended in all cases where capitalized. 5 | 6 | * Several passages could be made clearer. 7 | 8 | * Overall edit for scope. Portions are phrased as an introduction to 9 | the 0.1.3 RIFF container additions, rather than a holistic guide to 10 | WebP. 11 | 12 | * To wit, suggest s/[spec|specification]/guide/g . "Spec" can imply a 13 | standards track; in any case it's too formal for a work in progress. 14 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/pngusr.dfa: -------------------------------------------------------------------------------- 1 | # pngusr.dfa 2 | # 3 | # Build time configuration of libpng 4 | # 5 | # Enter build configuration options in this file 6 | # 7 | # Security settings: by default these limits are unset, you can change them 8 | # here by entering the appropriate values as #defines preceded by '@' (to cause, 9 | # them to be passed through to the build of pnglibconf.h), for example: 10 | # 11 | # @# define PNG_USER_WIDTH_MAX 65535 12 | # @# define PNG_USER_HEIGHT_MAX 65535 13 | # @# define PNG_USER_CHUNK_CACHE_MAX 256 14 | # @# define PNG_USER_CHUNK_MALLOC_MAX 640000 15 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/projects/visualc71/PRJ0041.mak: -------------------------------------------------------------------------------- 1 | # Prevent "Cannot find missing dependency..." warnings while compiling 2 | # pngwin.rc (PRJ0041). 3 | 4 | all: $(IntDir)\alloc.h \ 5 | $(IntDir)\fp.h \ 6 | $(IntDir)\m68881.h \ 7 | $(IntDir)\mem.h \ 8 | $(IntDir)\pngusr.h \ 9 | $(IntDir)\strings.h \ 10 | $(IntDir)\unistd.h \ 11 | $(IntDir)\unixio.h 12 | 13 | $(IntDir)\alloc.h \ 14 | $(IntDir)\fp.h \ 15 | $(IntDir)\m68881.h \ 16 | $(IntDir)\mem.h \ 17 | $(IntDir)\pngusr.h \ 18 | $(IntDir)\strings.h \ 19 | $(IntDir)\unistd.h \ 20 | $(IntDir)\unixio.h: 21 | @!echo.>$@ 22 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/preader/README: -------------------------------------------------------------------------------- 1 | This demonstrates the use of PNG_USER_CONFIG and pngusr.h 2 | 3 | The makefile builds a minimal read-only progressive decoder with 4 | embedded libpng, zlib and your system's X library. 5 | 6 | Specify the location of the zlib source (1.2.1 or later) as ZLIBSRC 7 | on the make command line. 8 | 9 | Edit makefile if required, to find your X library and include files, 10 | then 11 | 12 | make ZLIBSRC=directory 13 | 14 | If you prefer to use the shared libraries, go to contrib/gregbook 15 | and build the rpng2-x application there. 16 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/iostream3/TODO: -------------------------------------------------------------------------------- 1 | Possible upgrades to gzfilebuf: 2 | 3 | - The ability to do putback (e.g. putbackfail) 4 | 5 | - The ability to seek (zlib supports this, but could be slow/tricky) 6 | 7 | - Simultaneous read/write access (does it make sense?) 8 | 9 | - Support for ios_base::ate open mode 10 | 11 | - Locale support? 12 | 13 | - Check public interface to see which calls give problems 14 | (due to dependence on library internals) 15 | 16 | - Override operator<<(ostream&, gzfilebuf*) to allow direct copying 17 | of stream buffer to stream ( i.e. os << is.rdbuf(); ) 18 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/vers.c: -------------------------------------------------------------------------------- 1 | 2 | /* vers.c - define format of libpng.vers 3 | * 4 | * Last changed in libpng version 1.6.16 [December 22, 2014] 5 | * Copyright (c) 2011-2014 Glenn Randers-Pehrson 6 | * 7 | * This code is released under the libpng license. 8 | * For conditions of distribution and use, see the disclaimer 9 | * and license in png.h 10 | */ 11 | 12 | #define PNG_EXPORTA(ordinal, type, name, args, attributes)\ 13 | PNG_DFN " @" SYMBOL_PREFIX "@@" name "@;" 14 | 15 | PNG_DFN "@" PNGLIB_LIBNAME "@ {global:" 16 | 17 | #include "../png.h" 18 | 19 | PNG_DFN "local: *; };" 20 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- 1 | project Zlib is 2 | 3 | for Languages use ("Ada"); 4 | for Source_Dirs use ("."); 5 | for Object_Dir use "."; 6 | for Main use ("test.adb", "mtest.adb", "read.adb", "buffer_demo"); 7 | 8 | package Compiler is 9 | for Default_Switches ("ada") use ("-gnatwcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); 10 | end Compiler; 11 | 12 | package Linker is 13 | for Default_Switches ("ada") use ("-lz"); 14 | end Linker; 15 | 16 | package Builder is 17 | for Default_Switches ("ada") use ("-s", "-gnatQ"); 18 | end Builder; 19 | 20 | end Zlib; 21 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/tiffcp-split-join.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Basic sanity check for tiffcp + tiffsplit + tiffcp 4 | # 5 | # First we use tiffcp to join our test files into a multi-frame TIFF 6 | # then we use tiffsplit to split them out again, and then we use 7 | # tiffcp to recombine again. 8 | 9 | . ${srcdir:-.}/common.sh 10 | conjoined=o-tiffcp-split-join-conjoined.tif 11 | reconjoined=o-tiffcp-split-join-reconjoined.tif 12 | splitfile=o-tiffcp-split-join-split- 13 | 14 | f_test_convert "${TIFFCP}" "${IMG_UNCOMPRESSED}" "${conjoined}" 15 | f_test_convert "${TIFFSPLIT}" "${conjoined}" "${splitfile}" 16 | f_test_convert "${TIFFCP}" "${splitfile}*" "${reconjoined}" -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "zfstream.h" 3 | 4 | int main() { 5 | 6 | // Construct a stream object with this filebuffer. Anything sent 7 | // to this stream will go to standard out. 8 | gzofstream os( 1, ios::out ); 9 | 10 | // This text is getting compressed and sent to stdout. 11 | // To prove this, run 'test | zcat'. 12 | os << "Hello, Mommy" << endl; 13 | 14 | os << setcompressionlevel( Z_NO_COMPRESSION ); 15 | os << "hello, hello, hi, ho!" << endl; 16 | 17 | setcompressionlevel( os, Z_DEFAULT_COMPRESSION ) 18 | << "I'm compressing again" << endl; 19 | 20 | os.close(); 21 | 22 | return 0; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/tests/pngtest-badpngs: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # various crashers 4 | # using --relaxed because some come from fuzzers that don't maintain CRC's 5 | 6 | ./pngtest --relaxed ${srcdir}/contrib/testpngs/crashers/badcrc.png 7 | ./pngtest --relaxed ${srcdir}/contrib/testpngs/crashers/badadler.png 8 | ./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/bad_iCCP.png 9 | ./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/empty_ancillary_chunks.png 10 | ./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/huge_*_chunk.png \ 11 | ${srcdir}/contrib/testpngs/crashers/huge_*safe_to_copy.png 12 | 13 | exec ./pngtest --xfail ${srcdir}/contrib/testpngs/crashers/huge_IDAT.png 14 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | confflags = 4 | 5 | # These flags can be used to create a package directly linking with external libraries and having the appropriate package dependencies 6 | #confflags += --disable-jpg-shared 7 | #confflags += --disable-png-shared 8 | #confflags += --disable-tif-shared 9 | #confflags += --disable-webp-shared 10 | 11 | %: 12 | dh $@ --with autoreconf --parallel 13 | 14 | override_dh_autoreconf: 15 | dh_autoreconf ./autogen.sh 16 | 17 | override_dh_auto_configure: 18 | dh_auto_configure -- $(confflags) 19 | 20 | override_dh_auto_installchangelogs: 21 | dh_auto_installchangelogs -- CHANGES 22 | 23 | override_dh_compress: 24 | dh_compress -Xshowimage.c 25 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/visupng/VisualPng.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "VisualPng"=.\VisualPng.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/demux/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS += -I$(top_builddir) -I$(top_srcdir) 2 | lib_LTLIBRARIES = libwebpdemux.la 3 | 4 | libwebpdemux_la_SOURCES = 5 | libwebpdemux_la_SOURCES += anim_decode.c demux.c 6 | 7 | libwebpdemuxinclude_HEADERS = 8 | libwebpdemuxinclude_HEADERS += ../webp/decode.h 9 | libwebpdemuxinclude_HEADERS += ../webp/demux.h 10 | libwebpdemuxinclude_HEADERS += ../webp/mux_types.h 11 | libwebpdemuxinclude_HEADERS += ../webp/types.h 12 | noinst_HEADERS = 13 | noinst_HEADERS += ../webp/format_constants.h 14 | 15 | libwebpdemux_la_LIBADD = ../libwebp.la 16 | libwebpdemux_la_LDFLAGS = -no-undefined -version-info 2:6:0 17 | libwebpdemuxincludedir = $(includedir)/webp 18 | pkgconfig_DATA = libwebpdemux.pc 19 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/prefix.c: -------------------------------------------------------------------------------- 1 | 2 | /* prefix.c - generate an unprefixed symbol list 3 | * 4 | * Last changed in libpng version 1.6.16 [December 22, 2014] 5 | * Copyright (c) 2013-2014 Glenn Randers-Pehrson 6 | * 7 | * This code is released under the libpng license. 8 | * For conditions of distribution and use, see the disclaimer 9 | * and license in png.h 10 | */ 11 | 12 | #define PNG_EXPORTA(ordinal, type, name, args, attributes)\ 13 | PNG_DFN "@" name "@" 14 | 15 | /* The configuration information *before* the additional of symbol renames, 16 | * the list is the C name list; no symbol prefix. 17 | */ 18 | #include "pnglibconf.out" 19 | 20 | PNG_DFN_START_SORT 1 21 | 22 | #include "../png.h" 23 | 24 | PNG_DFN_END_SORT 25 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/intprefix.c: -------------------------------------------------------------------------------- 1 | 2 | /* intprefix.c - generate an unprefixed internal symbol list 3 | * 4 | * Last changed in libpng version 1.6.16 [December 22, 2014] 5 | * Copyright (c) 2013-2014 Glenn Randers-Pehrson 6 | * 7 | * This code is released under the libpng license. 8 | * For conditions of distribution and use, see the disclaimer 9 | * and license in png.h 10 | */ 11 | 12 | #define PNG_INTERNAL_DATA(type, name, array)\ 13 | PNG_DFN "@" name "@" 14 | 15 | #define PNG_INTERNAL_FUNCTION(type, name, args, attributes)\ 16 | PNG_DFN "@" name "@" 17 | 18 | #define PNG_INTERNAL_CALLBACK(type, name, args, attributes)\ 19 | PNG_DFN "@" name "@" 20 | 21 | #define PNGPREFIX_H /* self generation */ 22 | #include "../pngpriv.h" 23 | -------------------------------------------------------------------------------- /Xcode/Info-Framework.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | SDL2_image 9 | CFBundleIdentifier 10 | org.libsdl.SDL2-image 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | SDL2_image 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 2.0.6 19 | CFBundleVersion 20 | 2.0.6 21 | 22 | 23 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminus/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1) 2 | cmake_policy(VERSION 3.1) 3 | 4 | project(PNGMINUS C) 5 | 6 | option(PNGMINUS_USE_STATIC_LIBRARIES "Use the static library builds" ON) 7 | 8 | # libpng 9 | add_subdirectory(../.. libpng) 10 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../..) 11 | include_directories(${CMAKE_CURRENT_BINARY_DIR}/libpng) 12 | if(PNGMINUS_USE_STATIC_LIBRARIES) 13 | set(PNGMINUS_PNG_LIBRARY png_static) 14 | else() 15 | set(PNGMINUS_PNG_LIBRARY png) 16 | endif() 17 | 18 | # png2pnm 19 | add_executable(png2pnm png2pnm.c) 20 | target_link_libraries(png2pnm ${PNGMINUS_PNG_LIBRARY}) 21 | 22 | # pnm2png 23 | add_executable(pnm2png pnm2png.c) 24 | target_link_libraries(pnm2png ${PNGMINUS_PNG_LIBRARY}) 25 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/decoder/pngusr.h: -------------------------------------------------------------------------------- 1 | /* minrdpngconf.h: headers to make a minimal png-read-only library 2 | * 3 | * Copyright (c) 2007, 2010-2013 Glenn Randers-Pehrson 4 | * 5 | * This code is released under the libpng license. 6 | * For conditions of distribution and use, see the disclaimer 7 | * and license in png.h 8 | * 9 | * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson 10 | */ 11 | 12 | #ifndef MINRDPNGCONF_H 13 | #define MINRDPNGCONF_H 14 | 15 | /* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */ 16 | 17 | /* List options to turn off features of the build that do not 18 | * affect the API (so are not recorded in pnglibconf.h) 19 | */ 20 | 21 | #define PNG_ALIGN_TYPE PNG_ALIGN_NONE 22 | 23 | #endif /* MINRDPNGCONF_H */ 24 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/encoder/pngusr.h: -------------------------------------------------------------------------------- 1 | /* minwrpngconf.h: headers to make a minimal png-write-only library 2 | * 3 | * Copyright (c) 2007, 2010-2013 Glenn Randers-Pehrson 4 | * 5 | * This code is released under the libpng license. 6 | * For conditions of distribution and use, see the disclaimer 7 | * and license in png.h 8 | * 9 | * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson 10 | */ 11 | 12 | #ifndef MINWRPNGCONF_H 13 | #define MINWRPNGCONF_H 14 | 15 | /* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */ 16 | 17 | /* List options to turn off features of the build that do not 18 | * affect the API (so are not recorded in pnglibconf.h) 19 | */ 20 | 21 | #define PNG_ALIGN_TYPE PNG_ALIGN_NONE 22 | 23 | #endif /* MINWRPNGCONF_H */ 24 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminim/preader/pngusr.h: -------------------------------------------------------------------------------- 1 | /* minrdpngconf.h: headers to make a minimal png-read-only library 2 | * 3 | * Copyright (c) 2009, 2010-2013 Glenn Randers-Pehrson 4 | * 5 | * This code is released under the libpng license. 6 | * For conditions of distribution and use, see the disclaimer 7 | * and license in png.h 8 | * 9 | * Derived from pngcrush.h, Copyright 1998-2007, Glenn Randers-Pehrson 10 | */ 11 | 12 | #ifndef MINPRDPNGCONF_H 13 | #define MINPRDPNGCONF_H 14 | 15 | /* To include pngusr.h set -DPNG_USER_CONFIG in CPPFLAGS */ 16 | 17 | /* List options to turn off features of the build that do not 18 | * affect the API (so are not recorded in pnglibconf.h) 19 | */ 20 | 21 | #define PNG_ALIGN_TYPE PNG_ALIGN_NONE 22 | 23 | #endif /* MINPRDPNGCONF_H */ 24 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/pngminus/CHANGES.txt: -------------------------------------------------------------------------------- 1 | 2 | pnm2png / png2pnm --- conversion from PBM/PGM/PPM-file to PNG-file 3 | copyright (C) 1999-2019 by Willem van Schaik 4 | 5 | version 1.0 - 1999.10.15 - First version. 6 | 1.1 - 2015.07.29 - Fixed leaks (Glenn Randers-Pehrson) 7 | 1.2 - 2017.04.22 - Add buffer-size check 8 | 1.3 - 2017.08.24 - Fix potential overflow in buffer-size check 9 | (Glenn Randers-Pehrson) 10 | 1.4 - 2017.08.28 - Add PNGMINUS_UNUSED (Christian Hesse) 11 | 1.5 - 2018.08.05 - Fix buffer overflow in tokenizer (Cosmin Truta) 12 | 1.6 - 2018.08.05 - Improve portability and fix style (Cosmin Truta) 13 | 1.7 - 2019.01.22 - Change license to MIT (Willem van Schaik) 14 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/addtiffo/Makefile.vc: -------------------------------------------------------------------------------- 1 | # 2 | # If libtiff.a is installed in /usr/lib or /usr/local/lib just point 3 | # LIBTIFF_DIR there. It doesn't need a full libtiff tree. 4 | # 5 | !INCLUDE ..\..\nmake.opt 6 | 7 | LIBTIFF_DIR = ..\..\libtiff 8 | # 9 | INCL = -I..\..\libtiff 10 | LIBS = $(LIBTIFF_DIR)\libtiff.lib 11 | 12 | addtiffo: addtiffo.obj tif_overview.obj tif_ovrcache.obj 13 | $(CC) $(CFLAGS) addtiffo.obj tif_overview.obj tif_ovrcache.obj \ 14 | $(LIBS) /Feaddtiffo.exe 15 | 16 | 17 | addtiffo.obj: addtiffo.c 18 | $(CC) -c $(CFLAGS) addtiffo.c 19 | 20 | tif_overview.obj: tif_overview.c 21 | $(CC) -c $(CFLAGS) tif_overview.c 22 | 23 | tif_ovrcache.obj: tif_ovrcache.c 24 | $(CC) -c $(CFLAGS) tif_ovrcache.c 25 | 26 | clean: 27 | -del *.obj 28 | -del addtiffo.exe 29 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/gzclose.c: -------------------------------------------------------------------------------- 1 | /* gzclose.c -- zlib gzclose() function 2 | * Copyright (C) 2004, 2010 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | #include "gzguts.h" 7 | 8 | /* gzclose() is in a separate file so that it is linked in only if it is used. 9 | That way the other gzclose functions can be used instead to avoid linking in 10 | unneeded compression or decompression routines. */ 11 | int ZEXPORT gzclose(file) 12 | gzFile file; 13 | { 14 | #ifndef NO_GZCOMPRESS 15 | gz_statep state; 16 | 17 | if (file == NULL) 18 | return Z_STREAM_ERROR; 19 | state = (gz_statep)file; 20 | 21 | return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file); 22 | #else 23 | return gzclose_r(file); 24 | #endif 25 | } 26 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/testfax4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # check decoding of a CCITT Group 4 encoded TIFF 4 | # with 0 length runs 5 | . ${srcdir:-.}/common.sh 6 | infile="${IMAGES}/testfax4.tiff" 7 | outfile="o-testfax4.tiff" 8 | rm -f $outfile 9 | echo "$MEMCHECK ${TIFFCP} -c lzw $infile $outfile" 10 | eval "$MEMCHECK ${TIFFCP} -c lzw $infile $outfile" 11 | status=$? 12 | if [ $status != 0 ] ; then 13 | echo "Returned failed status $status!" 14 | echo "Output (if any) is in \"${outfile}\"." 15 | exit $status 16 | fi 17 | echo "$MEMCHECK ${TIFFCMP} $outfile ${REFS}/$outfile" 18 | eval "$MEMCHECK ${TIFFCMP} $outfile ${REFS}/$outfile" 19 | status=$? 20 | if [ $status != 0 ] ; then 21 | echo "Returned failed status $status!" 22 | echo "\"${outfile}\" differs from reference file." 23 | exit $status 24 | fi 25 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/m4/ltversion.m4: -------------------------------------------------------------------------------- 1 | # ltversion.m4 -- version numbers -*- Autoconf -*- 2 | # 3 | # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. 4 | # Written by Scott James Remnant, 2004 5 | # 6 | # This file is free software; the Free Software Foundation gives 7 | # unlimited permission to copy and/or distribute it, with or without 8 | # modifications, as long as this notice is preserved. 9 | 10 | # @configure_input@ 11 | 12 | # serial 4179 ltversion.m4 13 | # This file is part of GNU Libtool 14 | 15 | m4_define([LT_PACKAGE_VERSION], [2.4.6]) 16 | m4_define([LT_PACKAGE_REVISION], [2.4.6]) 17 | 18 | AC_DEFUN([LTVERSION_VERSION], 19 | [macro_version='2.4.6' 20 | macro_revision='2.4.6' 21 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 22 | _LT_DECL(, macro_revision, 0) 23 | ]) 24 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/contrib/tags/listtif.c: -------------------------------------------------------------------------------- 1 | /* 2 | * listtif.c -- lists a tiff file. 3 | */ 4 | 5 | #include "xtiffio.h" 6 | #include 7 | 8 | void main(int argc,char *argv[]) 9 | { 10 | char *fname="newtif.tif"; 11 | int flags; 12 | 13 | TIFF *tif=(TIFF*)0; /* TIFF-level descriptor */ 14 | 15 | if (argc>1) fname=argv[1]; 16 | 17 | tif=XTIFFOpen(fname,"r"); 18 | if (!tif) goto failure; 19 | 20 | /* We want the double array listed */ 21 | flags = TIFFPRINT_MYMULTIDOUBLES; 22 | 23 | TIFFPrintDirectory(tif,stdout,flags); 24 | XTIFFClose(tif); 25 | exit (0); 26 | 27 | failure: 28 | printf("failure in listtif\n"); 29 | if (tif) XTIFFClose(tif); 30 | exit (-1); 31 | } 32 | 33 | /* 34 | * Local Variables: 35 | * mode: c 36 | * c-basic-offset: 8 37 | * fill-column: 78 38 | * End: 39 | */ 40 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/m4/ltversion.m4: -------------------------------------------------------------------------------- 1 | # ltversion.m4 -- version numbers -*- Autoconf -*- 2 | # 3 | # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. 4 | # Written by Scott James Remnant, 2004 5 | # 6 | # This file is free software; the Free Software Foundation gives 7 | # unlimited permission to copy and/or distribute it, with or without 8 | # modifications, as long as this notice is preserved. 9 | 10 | # @configure_input@ 11 | 12 | # serial 4179 ltversion.m4 13 | # This file is part of GNU Libtool 14 | 15 | m4_define([LT_PACKAGE_VERSION], [2.4.6]) 16 | m4_define([LT_PACKAGE_REVISION], [2.4.6]) 17 | 18 | AC_DEFUN([LTVERSION_VERSION], 19 | [macro_version='2.4.6' 20 | macro_revision='2.4.6' 21 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 22 | _LT_DECL(, macro_revision, 0) 23 | ]) 24 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/scripts/ltversion.m4: -------------------------------------------------------------------------------- 1 | # ltversion.m4 -- version numbers -*- Autoconf -*- 2 | # 3 | # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. 4 | # Written by Scott James Remnant, 2004 5 | # 6 | # This file is free software; the Free Software Foundation gives 7 | # unlimited permission to copy and/or distribute it, with or without 8 | # modifications, as long as this notice is preserved. 9 | 10 | # @configure_input@ 11 | 12 | # serial 4179 ltversion.m4 13 | # This file is part of GNU Libtool 14 | 15 | m4_define([LT_PACKAGE_VERSION], [2.4.6]) 16 | m4_define([LT_PACKAGE_REVISION], [2.4.6]) 17 | 18 | AC_DEFUN([LTVERSION_VERSION], 19 | [macro_version='2.4.6' 20 | macro_revision='2.4.6' 21 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 22 | _LT_DECL(, macro_revision, 0) 23 | ]) 24 | -------------------------------------------------------------------------------- /Xcode/pkg-support/mkpackage.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Generic script to create a package with Project Builder in mind 4 | # There should only be one version of this script for all projects! 5 | 6 | FRAMEWORK="$1" 7 | VARIANT="$2" 8 | 9 | PACKAGE="$FRAMEWORK" 10 | PACKAGE_RESOURCES="pkg-support/resources" 11 | 12 | echo "Building package for $FRAMEWORK.framework" 13 | echo "Will fetch resources from $PACKAGE_RESOURCES" 14 | echo "Will create the package $PACKAGE.pkg" 15 | 16 | # create a copy of the framework 17 | mkdir -p build/pkg-tmp 18 | xcrun CpMac -r "build/$FRAMEWORK.framework" build/pkg-tmp/ 19 | 20 | ./package build/pkg-tmp "pkg-support/$PACKAGE.info" -d build -r "$PACKAGE_RESOURCES" 21 | 22 | # remove temporary files 23 | rm -rf build/pkg-tmp 24 | 25 | # compress 26 | (cd build; tar -zcvf "$PACKAGE.pkg.tar.gz" "$PACKAGE.pkg") 27 | 28 | -------------------------------------------------------------------------------- /Xcode/showimage/Info-showimage__Upgraded_.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | showimage 9 | CFBundleIconFile 10 | 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | APPL 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 0.1 19 | NSMainNibFile 20 | MainMenu 21 | NSPrincipalClass 22 | NSApplication 23 | 24 | 25 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/src/mux/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS += -I$(top_builddir) -I$(top_srcdir) 2 | lib_LTLIBRARIES = libwebpmux.la 3 | 4 | libwebpmux_la_SOURCES = 5 | libwebpmux_la_SOURCES += anim_encode.c 6 | libwebpmux_la_SOURCES += animi.h 7 | libwebpmux_la_SOURCES += muxedit.c 8 | libwebpmux_la_SOURCES += muxi.h 9 | libwebpmux_la_SOURCES += muxinternal.c 10 | libwebpmux_la_SOURCES += muxread.c 11 | 12 | libwebpmuxinclude_HEADERS = 13 | libwebpmuxinclude_HEADERS += ../webp/mux.h 14 | libwebpmuxinclude_HEADERS += ../webp/mux_types.h 15 | libwebpmuxinclude_HEADERS += ../webp/types.h 16 | noinst_HEADERS = 17 | noinst_HEADERS += ../webp/format_constants.h 18 | 19 | libwebpmux_la_LIBADD = ../libwebp.la 20 | libwebpmux_la_LDFLAGS = -no-undefined -version-info 3:4:0 -lm 21 | libwebpmuxincludedir = $(includedir)/webp 22 | pkgconfig_DATA = libwebpmux.pc 23 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/iostream2/zstream_test.cpp: -------------------------------------------------------------------------------- 1 | #include "zstream.h" 2 | #include 3 | #include 4 | #include 5 | 6 | void main() { 7 | char h[256] = "Hello"; 8 | char* g = "Goodbye"; 9 | ozstream out("temp.gz"); 10 | out < "This works well" < h < g; 11 | out.close(); 12 | 13 | izstream in("temp.gz"); // read it back 14 | char *x = read_string(in), *y = new char[256], z[256]; 15 | in > y > z; 16 | in.close(); 17 | cout << x << endl << y << endl << z << endl; 18 | 19 | out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results 20 | out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl; 21 | out << z << endl << y << endl << x << endl; 22 | out << 1.1234567890123456789 << endl; 23 | 24 | delete[] x; delete[] y; 25 | } 26 | -------------------------------------------------------------------------------- /README-emscripten.txt: -------------------------------------------------------------------------------- 1 | Building SDL2_image 2 | ------------------- 3 | 4 | The easiest way to use SDL2_image with Emscripten is to use Emscripten ports (https://kripken.github.io/emscripten-site/docs/compiling/Building-Projects.html#emscripten-ports) (-s USE_SDL_IMAGE=2). 5 | 6 | If you want to build it yourself instead you can use these instructions: 7 | 8 | Step 0 - get emscripten 9 | 10 | Step 1 - get sdl2-emscripten 11 | * clone https://github.com/emscripten-ports/SDL2.git 12 | * follow the build instructions in SDL2/docs/README-emscripten.md (make sure to pass a --prefix to configure) 13 | * make install 14 | 15 | Step 2 - get sdl_image 16 | * emconfigure ./configure --disable-sdltest --with-sdl-prefix=/path/to/sdl --prefix=/path/to/install 17 | * (where /path/to/sdl is the path you passed as --prefix to SDL2 configure) 18 | * emmake make 19 | * make install 20 | 21 | -------------------------------------------------------------------------------- /acinclude/ltversion.m4: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # ltversion.m4 -- version numbers -*- Autoconf -*- 3 | # 4 | # Copyright (C) 2004 Free Software Foundation, Inc. 5 | # Written by Scott James Remnant, 2004 6 | # 7 | # This file is free software; the Free Software Foundation gives 8 | # unlimited permission to copy and/or distribute it, with or without 9 | # modifications, as long as this notice is preserved. 10 | 11 | # Generated from ltversion.in. 12 | 13 | # serial 3012 ltversion.m4 14 | # This file is part of GNU Libtool 15 | 16 | m4_define([LT_PACKAGE_VERSION], [2.2.6]) 17 | m4_define([LT_PACKAGE_REVISION], [1.3012]) 18 | 19 | AC_DEFUN([LTVERSION_VERSION], 20 | [macro_version='2.2.6' 21 | macro_revision='1.3012' 22 | _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) 23 | _LT_DECL(, macro_revision, 0) 24 | ]) 25 | 26 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/visupng/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by VisualPng.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | #define IDM_FILE_SAVE 40002 7 | #define IDM_FILE_NEXT 40003 8 | #define IDM_FILE_PREVIOUS 40004 9 | #define IDM_FILE_EXIT 40005 10 | #define IDM_OPTIONS_BACKGROUND 40006 11 | #define IDM_OPTIONS_STRETCH 40007 12 | #define IDM_HELP_ABOUT 40008 13 | 14 | // Next default values for new objects 15 | // 16 | #ifdef APSTUDIO_INVOKED 17 | #ifndef APSTUDIO_READONLY_SYMBOLS 18 | #define _APS_NEXT_RESOURCE_VALUE 113 19 | #define _APS_NEXT_COMMAND_VALUE 40009 20 | #define _APS_NEXT_CONTROL_VALUE 1001 21 | #define _APS_NEXT_SYMED_VALUE 101 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/mztools.h: -------------------------------------------------------------------------------- 1 | /* 2 | Additional tools for Minizip 3 | Code: Xavier Roche '2004 4 | License: Same as ZLIB (www.gzip.org) 5 | */ 6 | 7 | #ifndef _zip_tools_H 8 | #define _zip_tools_H 9 | 10 | #ifdef __cplusplus 11 | extern "C" { 12 | #endif 13 | 14 | #ifndef _ZLIB_H 15 | #include "zlib.h" 16 | #endif 17 | 18 | #include "unzip.h" 19 | 20 | /* Repair a ZIP file (missing central directory) 21 | file: file to recover 22 | fileOut: output file after recovery 23 | fileOutTmp: temporary file name used for recovery 24 | */ 25 | extern int ZEXPORT unzRepair(const char* file, 26 | const char* fileOut, 27 | const char* fileOutTmp, 28 | uLong* nRecovered, 29 | uLong* bytesRecovered); 30 | 31 | 32 | #ifdef __cplusplus 33 | } 34 | #endif 35 | 36 | 37 | #endif 38 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/libpngpf.3: -------------------------------------------------------------------------------- 1 | .TH LIBPNGPF 3 "April 14, 2019" 2 | .SH NAME 3 | libpng \- Portable Network Graphics (PNG) Reference Library 1.6.37 4 | (private functions) 5 | 6 | .SH SYNOPSIS 7 | \fB#include \fI"pngpriv.h" 8 | 9 | \fBAs of libpng version \fP\fI1.5.1\fP\fB, this section is no longer 10 | \fP\fImaintained\fP\fB, now that the private function prototypes are hidden in 11 | \fP\fIpngpriv.h\fP\fB and not accessible to applications. Look in 12 | \fP\fIpngpriv.h\fP\fB for the prototypes and a short description of each 13 | function. 14 | 15 | .SH DESCRIPTION 16 | The functions previously listed here are used privately by libpng and are not 17 | available for use by applications. They are not "exported" to applications 18 | using shared libraries. 19 | 20 | .SH "SEE ALSO" 21 | .BR "png"(5), " libpng"(3), " zlib"(3), " deflate"(5), " " and " zlib"(5) 22 | 23 | .SH AUTHORS 24 | Cosmin Truta, Glenn Randers-Pehrson 25 | -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- 1 | 44389d6f0f6515b9dec90dbe82c1eac937d8f3d6 release-1.2.10 2 | 57dcb4f3081e3c78a80566803e2401b9d8216dda release-1.2.6 3 | 6b749dde323bf6a5ce51c70d470a3194d95fbe68 release-1.2.7 4 | 9d6e834a619338e25597eed358f515566549f024 release-1.2.5 5 | b31f55bf279a6404013f88a7ab2e4067f3ddbbda release-1.2.8 6 | f92c6b8019b2fc330ef728a30a8804e0727f27aa release-1.2.9 7 | 352bda544924602e6eb576cb2c999ead1eab2b46 release-1.2.11 8 | d46c630f2cd65b5d9635ce4258be108da96740cb release-1.2.12 9 | 05ed5cf4143d9f42a05db313784706a142135260 release-2.0.0 10 | 20954174d8334416325fd368c01b83c8316a2c6e release-2.0.1 11 | c28eb37178a14bb4dd469b866a4401729070ab65 release-2.0.2 12 | a07b331fd1aac62ee464e276ae77ae7594b71adf release-2.0.3 13 | a07b331fd1aac62ee464e276ae77ae7594b71adf release-2.0.3 14 | 45e1826592df2ebb822072fb31a2390e3e031f02 release-2.0.3 15 | b4519566edd3136e88652d722e2ef137ea21a370 release-2.0.4 16 | 6dd3b4df8ec1bb554e38701590d289977948b91d release-2.0.5 17 | -------------------------------------------------------------------------------- /Xcode/Frameworks/webp.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | webp 9 | CFBundleGetInfoString 10 | libwebp 1.0.3 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | webp 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.3 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.3 27 | 28 | 29 | -------------------------------------------------------------------------------- /external/tiff-4.2.0/test/images/README.txt: -------------------------------------------------------------------------------- 1 | The test files in this directory mostly have dimension 157x151. 2 | The naming convention is 3 | 4 | photometric-channels-bits.tiff 5 | 6 | minisblack-1c-16b.tiff 7 | minisblack-1c-8b.tiff 8 | miniswhite-1c-1b.tiff 9 | palette-1c-1b.tiff 10 | palette-1c-4b.tiff 11 | palette-1c-8b.tiff 12 | rgb-3c-16b.tiff 13 | rgb-3c-8b.tiff 14 | 15 | logluv-3c-16b.tiff: logluv compression/photometric interp 16 | minisblack-2c-8b-alpha.tiff: grey+alpha 17 | 18 | BMP files (anchient BMPv2 since v3 does not work): 19 | 20 | palette-1c-8b.bmp 21 | rgb-3c-8b.bmp 22 | 23 | GIF files (anchient GIF '87 since modern GIF does not work): 24 | palette-1c-8b.gif 25 | 26 | PNM files: 27 | minisblack-1c-8b.pgm 28 | miniswhite-1c-1b.pbm 29 | rgb-3c-8b.ppm 30 | 31 | G3 Fax files : 32 | miniswhite-1c-1b.g3 33 | 34 | deflate-last-strip-extra-data.tiff is 35 | https://github.com/OSGeo/gdal/blob/master/autotest/alg/data/utmsmall_near.tiff 36 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/configure.ac: -------------------------------------------------------------------------------- 1 | # -*- Autoconf -*- 2 | # Process this file with autoconf to produce a configure script. 3 | 4 | AC_INIT([minizip], [1.2.11], [bugzilla.redhat.com]) 5 | AC_CONFIG_SRCDIR([minizip.c]) 6 | AM_INIT_AUTOMAKE([foreign]) 7 | LT_INIT 8 | 9 | AC_MSG_CHECKING([whether to build example programs]) 10 | AC_ARG_ENABLE([demos], AC_HELP_STRING([--enable-demos], [build example programs])) 11 | AM_CONDITIONAL([COND_DEMOS], [test "$enable_demos" = yes]) 12 | if test "$enable_demos" = yes 13 | then 14 | AC_MSG_RESULT([yes]) 15 | else 16 | AC_MSG_RESULT([no]) 17 | fi 18 | 19 | case "${host}" in 20 | *-mingw* | mingw*) 21 | WIN32="yes" 22 | ;; 23 | *) 24 | ;; 25 | esac 26 | AM_CONDITIONAL([WIN32], [test "${WIN32}" = "yes"]) 27 | 28 | 29 | AC_SUBST([HAVE_UNISTD_H], [0]) 30 | AC_CHECK_HEADER([unistd.h], [HAVE_UNISTD_H=1], []) 31 | AC_CONFIG_FILES([Makefile minizip.pc]) 32 | AC_OUTPUT 33 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/oss-fuzz/png.dict: -------------------------------------------------------------------------------- 1 | # 2 | # AFL dictionary for PNG images 3 | # ----------------------------- 4 | # 5 | # Just the basic, standard-originating sections; does not include vendor 6 | # extensions. 7 | # 8 | # Created by Michal Zalewski 9 | # 10 | 11 | header_png="\x89PNG\x0d\x0a\x1a\x0a" 12 | 13 | section_IDAT="IDAT" 14 | section_IEND="IEND" 15 | section_IHDR="IHDR" 16 | section_PLTE="PLTE" 17 | section_bKGD="bKGD" 18 | section_cHRM="cHRM" 19 | section_eXIf="eXIf" 20 | section_fRAc="fRAc" 21 | section_gAMA="gAMA" 22 | section_gIFg="gIFg" 23 | section_gIFt="gIFt" 24 | section_gIFx="gIFx" 25 | section_hIST="hIST" 26 | section_iCCP="iCCP" 27 | section_iTXt="iTXt" 28 | section_oFFs="oFFs" 29 | section_pCAL="pCAL" 30 | section_pHYs="pHYs" 31 | section_sBIT="sBIT" 32 | section_sCAL="sCAL" 33 | section_sPLT="sPLT" 34 | section_sRGB="sRGB" 35 | section_sTER="sTER" 36 | section_tEXt="tEXt" 37 | section_tIME="tIME" 38 | section_tRNS="tRNS" 39 | section_zTXt="zTXt" 40 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- 1 | /* iowin32.h -- IO base function header for compress/uncompress .zip 2 | Version 1.1, February 14h, 2010 3 | part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html ) 4 | 5 | Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) 6 | 7 | Modifications for Zip64 support 8 | Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) 9 | 10 | For more info read MiniZip_info.txt 11 | 12 | */ 13 | 14 | #include 15 | 16 | 17 | #ifdef __cplusplus 18 | extern "C" { 19 | #endif 20 | 21 | void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); 22 | void fill_win32_filefunc64 OF((zlib_filefunc64_def* pzlib_filefunc_def)); 23 | void fill_win32_filefunc64A OF((zlib_filefunc64_def* pzlib_filefunc_def)); 24 | void fill_win32_filefunc64W OF((zlib_filefunc64_def* pzlib_filefunc_def)); 25 | 26 | #ifdef __cplusplus 27 | } 28 | #endif 29 | -------------------------------------------------------------------------------- /external/libwebp-1.0.3/extras/webp_to_sdl.h: -------------------------------------------------------------------------------- 1 | // Copyright 2017 Google Inc. All Rights Reserved. 2 | // 3 | // Use of this source code is governed by a BSD-style license 4 | // that can be found in the COPYING file in the root of the source 5 | // tree. An additional intellectual property rights grant can be found 6 | // in the file PATENTS. All contributing project authors may 7 | // be found in the AUTHORS file in the root of the source tree. 8 | // ----------------------------------------------------------------------------- 9 | // 10 | // Simple WebP-to-SDL wrapper. Useful for emscripten. 11 | // 12 | // Author: James Zern (jzern@google.com) 13 | 14 | #ifndef WEBP_EXTRAS_WEBP_TO_SDL_H_ 15 | #define WEBP_EXTRAS_WEBP_TO_SDL_H_ 16 | 17 | // Exports the method WebpToSDL(const char* data, int data_size) which decodes 18 | // a WebP bitstream into an RGBA SDL surface. 19 | // Return false on failure. 20 | extern int WebpToSDL(const char* data, unsigned int data_size); 21 | 22 | #endif // WEBP_EXTRAS_WEBP_TO_SDL_H_ 23 | -------------------------------------------------------------------------------- /VisualC-WinRT/WinRT81_VS2013/SDL_image-WinRT81.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VisualC-WinRT/WinPhone80_VS2012/SDL_image-WinPhone80.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /VisualC-WinRT/WinPhone81_VS2013/SDL_image-WinPhone81.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/masmx86/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | Summary 3 | ------- 4 | This directory contains ASM implementations of the functions 5 | longest_match() and inflate_fast(). 6 | 7 | 8 | Use instructions 9 | ---------------- 10 | Assemble using MASM, and copy the object files into the zlib source 11 | directory, then run the appropriate makefile, as suggested below. You can 12 | donwload MASM from here: 13 | 14 | http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=7a1c9da0-0510-44a2-b042-7ef370530c64 15 | 16 | You can also get objects files here: 17 | 18 | http://www.winimage.com/zLibDll/zlib124_masm_obj.zip 19 | 20 | Build instructions 21 | ------------------ 22 | * With Microsoft C and MASM: 23 | nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" 24 | 25 | * With Borland C and TASM: 26 | make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="match686.obj inffas32.obj" OBJPA="+match686c.obj+match686.obj+inffas32.obj" 27 | 28 | -------------------------------------------------------------------------------- /external/libpng-1.6.37/contrib/tools/reindent: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # reindent a libpng C source 4 | 5 | # COPYRIGHT: Written by Glenn Randers-Pehrson, 2016. 6 | # To the extent possible under law, the author has waived all copyright and 7 | # related or neighboring rights to this work. This work is published from: 8 | # United States. 9 | 10 | # Usage: 11 | # reindent inputtabsize outputtabsize inputcontinuestring outputcontinuestring 12 | # 13 | # Assumes that continued lines begin with indentation plus one space, and 14 | # that continued comments begin with indentation plus " *". 15 | # 16 | # eg, to change libpng coding style from 3-space indentation with 4-space 17 | # continuations to 4-space indentation with 2-space continuations: 18 | # 19 | # reindent 3 4 "\t " " " < example.c > example.c_4_2 20 | # and to restore the file back to libpng coding style 21 | # reindent 4 3 " " " " < example.c_4_2 > example.c_3_4 22 | 23 | unexpand --first-only --t $1 | \ 24 | sed -e "/^ *$3[^\*]/{s/$3/$4/}" | \ 25 | expand -t $2 26 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/dotzlib/DotZLib.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 8.00 2 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotZLib", "DotZLib\DotZLib.csproj", "{BB1EE0B1-1808-46CB-B786-949D91117FC5}" 3 | ProjectSection(ProjectDependencies) = postProject 4 | EndProjectSection 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfiguration) = preSolution 8 | Debug = Debug 9 | Release = Release 10 | EndGlobalSection 11 | GlobalSection(ProjectConfiguration) = postSolution 12 | {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.ActiveCfg = Debug|.NET 13 | {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Debug.Build.0 = Debug|.NET 14 | {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Release.ActiveCfg = Release|.NET 15 | {BB1EE0B1-1808-46CB-B786-949D91117FC5}.Release.Build.0 = Release|.NET 16 | EndGlobalSection 17 | GlobalSection(ExtensibilityGlobals) = postSolution 18 | EndGlobalSection 19 | GlobalSection(ExtensibilityAddIns) = postSolution 20 | EndGlobalSection 21 | EndGlobal 22 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/old/os2/zlib.def: -------------------------------------------------------------------------------- 1 | ; 2 | ; Slightly modified version of ../nt/zlib.dnt :-) 3 | ; 4 | 5 | LIBRARY Z 6 | DESCRIPTION "Zlib compression library for OS/2" 7 | CODE PRELOAD MOVEABLE DISCARDABLE 8 | DATA PRELOAD MOVEABLE MULTIPLE 9 | 10 | EXPORTS 11 | adler32 12 | compress 13 | crc32 14 | deflate 15 | deflateCopy 16 | deflateEnd 17 | deflateInit2_ 18 | deflateInit_ 19 | deflateParams 20 | deflateReset 21 | deflateSetDictionary 22 | gzclose 23 | gzdopen 24 | gzerror 25 | gzflush 26 | gzopen 27 | gzread 28 | gzwrite 29 | inflate 30 | inflateEnd 31 | inflateInit2_ 32 | inflateInit_ 33 | inflateReset 34 | inflateSetDictionary 35 | inflateSync 36 | uncompress 37 | zlibVersion 38 | gzprintf 39 | gzputc 40 | gzgetc 41 | gzseek 42 | gzrewind 43 | gztell 44 | gzeof 45 | gzsetparams 46 | zError 47 | inflateSyncPoint 48 | get_crc_table 49 | compress2 50 | gzputs 51 | gzgets 52 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/make_vms.com: -------------------------------------------------------------------------------- 1 | $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig 2 | $ open/write zdef vmsdefs.h 3 | $ copy sys$input: zdef 4 | $ deck 5 | #define unix 6 | #define fill_zlib_filefunc64_32_def_from_filefunc32 fillzffunc64from 7 | #define Write_Zip64EndOfCentralDirectoryLocator Write_Zip64EoDLocator 8 | #define Write_Zip64EndOfCentralDirectoryRecord Write_Zip64EoDRecord 9 | #define Write_EndOfCentralDirectoryRecord Write_EoDRecord 10 | $ eod 11 | $ close zdef 12 | $ copy vmsdefs.h,ioapi.h_orig ioapi.h 13 | $ cc/include=[--]/prefix=all ioapi.c 14 | $ cc/include=[--]/prefix=all miniunz.c 15 | $ cc/include=[--]/prefix=all unzip.c 16 | $ cc/include=[--]/prefix=all minizip.c 17 | $ cc/include=[--]/prefix=all zip.c 18 | $ link miniunz,unzip,ioapi,[--]libz.olb/lib 19 | $ link minizip,zip,ioapi,[--]libz.olb/lib 20 | $ mcr []minizip test minizip_info.txt 21 | $ mcr []miniunz -l test.zip 22 | $ rename minizip_info.txt; minizip_info.txt_old 23 | $ mcr []miniunz test.zip 24 | $ delete test.zip;* 25 | $exit 26 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/minizip/Makefile.am: -------------------------------------------------------------------------------- 1 | lib_LTLIBRARIES = libminizip.la 2 | 3 | if COND_DEMOS 4 | bin_PROGRAMS = miniunzip minizip 5 | endif 6 | 7 | zlib_top_srcdir = $(top_srcdir)/../.. 8 | zlib_top_builddir = $(top_builddir)/../.. 9 | 10 | AM_CPPFLAGS = -I$(zlib_top_srcdir) 11 | AM_LDFLAGS = -L$(zlib_top_builddir) 12 | 13 | if WIN32 14 | iowin32_src = iowin32.c 15 | iowin32_h = iowin32.h 16 | endif 17 | 18 | libminizip_la_SOURCES = \ 19 | ioapi.c \ 20 | mztools.c \ 21 | unzip.c \ 22 | zip.c \ 23 | ${iowin32_src} 24 | 25 | libminizip_la_LDFLAGS = $(AM_LDFLAGS) -version-info 1:0:0 -lz 26 | 27 | minizip_includedir = $(includedir)/minizip 28 | minizip_include_HEADERS = \ 29 | crypt.h \ 30 | ioapi.h \ 31 | mztools.h \ 32 | unzip.h \ 33 | zip.h \ 34 | ${iowin32_h} 35 | 36 | pkgconfigdir = $(libdir)/pkgconfig 37 | pkgconfig_DATA = minizip.pc 38 | 39 | EXTRA_PROGRAMS = miniunzip minizip 40 | 41 | miniunzip_SOURCES = miniunz.c 42 | miniunzip_LDADD = libminizip.la 43 | 44 | minizip_SOURCES = minizip.c 45 | minizip_LDADD = libminizip.la -lz 46 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/vstudio/vc10/miniunz.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {048af943-022b-4db6-beeb-a54c34774ee2} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm 7 | 8 | 9 | {c1d600d2-888f-4aea-b73e-8b0dd9befa0c} 10 | h;hpp;hxx;hm;inl;inc 11 | 12 | 13 | {0844199a-966b-4f19-81db-1e0125e141b9} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | -------------------------------------------------------------------------------- /external/zlib-1.2.11/contrib/vstudio/vc10/minizip.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {c0419b40-bf50-40da-b153-ff74215b79de} 6 | cpp;c;cxx;def;odl;idl;hpj;bat;asm 7 | 8 | 9 | {bb87b070-735b-478e-92ce-7383abb2f36c} 10 | h;hpp;hxx;hm;inl;inc 11 | 12 | 13 | {f46ab6a6-548f-43cb-ae96-681abb5bd5db} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe 15 | 16 | 17 | 18 | 19 | Source Files 20 | 21 | 22 | --------------------------------------------------------------------------------