├── .clang-format ├── .clang-tidy ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build_problem.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── analysis.yml │ ├── build-steps.yml │ ├── ci.yml │ ├── docs.yml │ ├── release-notice.yml │ ├── release-sign.yml │ ├── scorecard.yml │ └── wheel.yml ├── .gitignore ├── .mailmap ├── .readthedocs.yml ├── ASWF ├── CLA-corporate.md ├── CLA-individual.md ├── Technical-Charter.md └── logos │ ├── openimageio-acronym-gradient-light.png │ ├── openimageio-acronym-gradient.png │ ├── openimageio-horizontal-gradient.png │ ├── openimageio-icon-gradient.png │ ├── openimageio-stacked-gradient-light.png │ └── openimageio-stacked-gradient.png ├── CHANGES.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── GOVERNANCE.md ├── INSTALL.md ├── LICENSE.md ├── Makefile ├── README.md ├── RELICENSING.md ├── SECURITY.md ├── THIRD-PARTY.md ├── conanfile.txt ├── docs ├── CHANGES-0.x.md ├── CHANGES-1.x.md ├── CHANGES-2.x.md ├── Deprecations-3.0.md ├── QuickStart.md ├── ROADMAP.md └── dev │ ├── Architecture.md │ ├── Build_Profiling.md │ ├── Changes-skeleton-major.md │ ├── Changes-skeleton-patch.md │ ├── CodeReview.md │ └── RELEASING.md ├── pyproject.toml ├── sonar-project.properties ├── src ├── bmp.imageio │ ├── CMakeLists.txt │ ├── bmp_pvt.cpp │ ├── bmp_pvt.h │ ├── bmpinput.cpp │ └── bmpoutput.cpp ├── build-scripts │ ├── OpenImageIO.pc.in │ ├── build_Freetype.bash │ ├── build_OpenJPEG.bash │ ├── build_Ptex.bash │ ├── build_abi_tools.bash │ ├── build_ccache.bash │ ├── build_cmake.bash │ ├── build_gif.bash │ ├── build_libjpeg-turbo.bash │ ├── build_libpng.bash │ ├── build_libraw.bash │ ├── build_libtiff.bash │ ├── build_llvm.bash │ ├── build_ninja.bash │ ├── build_opencolorio.bash │ ├── build_openexr.bash │ ├── build_pugixml.bash │ ├── build_pybind11.bash │ ├── build_webp.bash │ ├── build_zlib.bash │ ├── ci-abicheck.bash │ ├── ci-benchmark.bash │ ├── ci-build.bash │ ├── ci-coverage.bash │ ├── ci-startup.bash │ ├── ci-test.bash │ ├── gh-installdeps.bash │ ├── gh-win-installdeps.bash │ ├── hidesymbols.map │ ├── install_homebrew_deps.bash │ ├── ninjatracing.py │ ├── nosanitize.txt │ ├── oneAPI.repo │ ├── run-clang-format.bash │ ├── save-env.bash │ ├── ubsan-suppressions.txt │ └── version_win32.rc.in ├── cineon.imageio │ ├── CMakeLists.txt │ ├── cineoninput.cpp │ └── libcineon │ │ ├── BaseTypeConverter.h │ │ ├── Cineon.cpp │ │ ├── Cineon.h │ │ ├── CineonHeader.cpp │ │ ├── CineonHeader.h │ │ ├── CineonStream.h │ │ ├── Codec.cpp │ │ ├── Codec.h │ │ ├── ElementReadStream.cpp │ │ ├── ElementReadStream.h │ │ ├── EndianSwap.h │ │ ├── InStream.cpp │ │ ├── OutStream.cpp │ │ ├── Reader.cpp │ │ ├── ReaderInternal.h │ │ ├── Writer.cpp │ │ └── WriterInternal.h ├── cmake │ ├── Config.cmake.in │ ├── add_oiio_plugin.cmake │ ├── build_Freetype.cmake │ ├── build_GIF.cmake │ ├── build_GIF_CMakeLists.txt │ ├── build_Imath.cmake │ ├── build_OpenColorIO.cmake │ ├── build_OpenEXR.cmake │ ├── build_OpenJPEG.cmake │ ├── build_PNG.cmake │ ├── build_Robinmap.cmake │ ├── build_TIFF.cmake │ ├── build_WebP.cmake │ ├── build_ZLIB.cmake │ ├── build_expat.cmake │ ├── build_fmt.cmake │ ├── build_libdeflate.cmake │ ├── build_libjpeg-turbo.cmake │ ├── build_libuhdr.cmake │ ├── build_minizip-ng.cmake │ ├── build_pybind11.cmake │ ├── build_pystring.cmake │ ├── build_yaml-cpp.cmake │ ├── check_is_enabled.cmake │ ├── colors.cmake │ ├── compiler.cmake │ ├── cuda_macros.cmake │ ├── dependency_utils.cmake │ ├── externalpackages.cmake │ ├── fancy_add_executable.cmake │ ├── modules │ │ ├── FindFFmpeg.cmake │ │ ├── FindJXL.cmake │ │ ├── FindLibRaw.cmake │ │ ├── FindLibheif.cmake │ │ ├── FindNuke.cmake │ │ ├── FindOpenCV.cmake │ │ ├── FindOpenEXR.cmake │ │ ├── FindOpenJPEG.cmake │ │ ├── FindOpenVDB.cmake │ │ ├── FindPtex.cmake │ │ ├── FindR3DSDK.cmake │ │ ├── FindRobinmap.cmake │ │ ├── FindTBB.cmake │ │ ├── Findlibuhdr.cmake │ │ ├── Findpugixml.cmake │ │ └── Findpystring.cmake │ ├── packaging.cmake │ ├── pythonutils.cmake │ ├── set_utils.cmake │ └── testing.cmake ├── dds.imageio │ ├── CMakeLists.txt │ ├── bcdec.h │ ├── dds_pvt.h │ └── ddsinput.cpp ├── dicom.imageio │ ├── CMakeLists.txt │ └── dicominput.cpp ├── doc │ ├── .gitignore │ ├── Building_the_docs.md │ ├── CMakeLists.txt │ ├── Description.txt │ ├── Doxyfile │ ├── Makefile │ ├── Welcome.txt │ ├── builtinplugins.rst │ ├── cliff.toml │ ├── conf.py │ ├── copyr.rst │ ├── figures │ │ ├── CC-BY.png │ │ ├── addc.jpg │ │ ├── bluenoise.jpg │ │ ├── bottomhat.jpg │ │ ├── box.png │ │ ├── checker.jpg │ │ ├── colormap-custom.jpg │ │ ├── colormap-inferno.jpg │ │ ├── colormap-turbo.jpg │ │ ├── colormap-viridis.jpg │ │ ├── crop.jpg │ │ ├── cshift.jpg │ │ ├── cut.jpg │ │ ├── dilate.jpg │ │ ├── erode.jpg │ │ ├── fill.jpg │ │ ├── fit-height.jpg │ │ ├── fit-letterbox.jpg │ │ ├── fit-width.jpg │ │ ├── fitv-height.jpg │ │ ├── fitv-letterbox.jpg │ │ ├── fitv-width.jpg │ │ ├── flip.jpg │ │ ├── flipflop.jpg │ │ ├── flop.jpg │ │ ├── gaussnoise.jpg │ │ ├── gradient.jpg │ │ ├── gradient4.jpg │ │ ├── gradienth.jpg │ │ ├── grid-small.jpg │ │ ├── imagebuf-notebook-demo.png │ │ ├── invert.jpg │ │ ├── lines.png │ │ ├── luma.jpg │ │ ├── morphclose.jpg │ │ ├── morphgradient.jpg │ │ ├── morphopen.jpg │ │ ├── morphsource.jpg │ │ ├── mosaic.jpg │ │ ├── mulc.jpg │ │ ├── points.png │ │ ├── pretrim.jpg │ │ ├── rotate180.jpg │ │ ├── rotate270.jpg │ │ ├── rotate45.jpg │ │ ├── rotate90.jpg │ │ ├── scale.jpg │ │ ├── tahoe-blur.jpg │ │ ├── tahoe-ccmatrix.jpg │ │ ├── tahoe-gauss.jpg │ │ ├── tahoe-inverse.jpg │ │ ├── tahoe-laplacian.jpg │ │ ├── tahoe-lincontrast.jpg │ │ ├── tahoe-pepper-median.jpg │ │ ├── tahoe-pepper.jpg │ │ ├── tahoe-sat0.jpg │ │ ├── tahoe-sat2.jpg │ │ ├── tahoe-sigmoid.jpg │ │ ├── tahoe-small.jpg │ │ ├── text.jpg │ │ ├── textcentered.jpg │ │ ├── textshadowed.jpg │ │ ├── tophat.jpg │ │ ├── transpose.jpg │ │ ├── trim.jpg │ │ ├── unifnoise1.jpg │ │ └── unifnoise3.jpg │ ├── glossary.rst │ ├── help2man_preformat.py │ ├── iconvert.rst │ ├── idiff.rst │ ├── igrep.rst │ ├── iinfo.rst │ ├── imagebuf.rst │ ├── imagebufalgo.rst │ ├── imagecache.rst │ ├── imageinput.rst │ ├── imageioapi.rst │ ├── imageoutput.rst │ ├── index.rst │ ├── mainpage.h │ ├── makefigures.bash │ ├── maketx.rst │ ├── notes.txt │ ├── oiiointro.rst │ ├── oiiotool.rst │ ├── pythonbindings.rst │ ├── requirements.txt │ ├── stdmetadata.rst │ ├── templates │ │ └── layout.html │ ├── texturesys.rst │ └── writingplugins.rst ├── dpx.imageio │ ├── CMakeLists.txt │ ├── dpxinput.cpp │ ├── dpxoutput.cpp │ └── libdpx │ │ ├── BaseTypeConverter.h │ │ ├── Codec.cpp │ │ ├── Codec.h │ │ ├── DPX.cpp │ │ ├── DPX.h │ │ ├── DPXColorConverter.cpp │ │ ├── DPXColorConverter.h │ │ ├── DPXHeader.cpp │ │ ├── DPXHeader.h │ │ ├── DPXStream.h │ │ ├── ElementReadStream.cpp │ │ ├── ElementReadStream.h │ │ ├── EndianSwap.h │ │ ├── InStream.cpp │ │ ├── OutStream.cpp │ │ ├── Reader.cpp │ │ ├── ReaderInternal.h │ │ ├── RunLengthEncoding.cpp │ │ ├── RunLengthEncoding.h │ │ ├── Writer.cpp │ │ └── WriterInternal.h ├── ffmpeg.imageio │ ├── CMakeLists.txt │ └── ffmpeginput.cpp ├── fits.imageio │ ├── CMakeLists.txt │ ├── fits_pvt.cpp │ ├── fits_pvt.h │ ├── fitsinput.cpp │ └── fitsoutput.cpp ├── fonts │ ├── CMakeLists.txt │ ├── Droid_Sans │ │ ├── DroidSans-Bold.ttf │ │ ├── DroidSans.ttf │ │ └── droid-lic.txt │ ├── Droid_Sans_Mono │ │ ├── DroidSansMono.ttf │ │ └── droid-lic.txt │ └── Droid_Serif │ │ ├── DroidSerif-Bold.ttf │ │ ├── DroidSerif-BoldItalic.ttf │ │ ├── DroidSerif-Italic.ttf │ │ ├── DroidSerif.ttf │ │ └── droid-lic.txt ├── gif.imageio │ ├── CMakeLists.txt │ ├── gif.h │ ├── gifinput.cpp │ └── gifoutput.cpp ├── hdr.imageio │ ├── CMakeLists.txt │ ├── hdrinput.cpp │ └── hdroutput.cpp ├── heif.imageio │ ├── CMakeLists.txt │ ├── heifinput.cpp │ └── heifoutput.cpp ├── ico.imageio │ ├── CMakeLists.txt │ ├── ico.h │ ├── icoinput.cpp │ └── icooutput.cpp ├── iconvert │ ├── CMakeLists.txt │ └── iconvert.cpp ├── idiff │ ├── CMakeLists.txt │ └── idiff.cpp ├── iff.imageio │ ├── CMakeLists.txt │ ├── iff_pvt.h │ ├── iffinput.cpp │ └── iffoutput.cpp ├── igrep │ ├── CMakeLists.txt │ └── igrep.cpp ├── iinfo │ ├── CMakeLists.txt │ └── iinfo.cpp ├── include │ ├── CMakeLists.txt │ ├── OpenImageIO │ │ ├── Imath.h │ │ ├── argparse.h │ │ ├── atomic.h │ │ ├── attrdelegate.h │ │ ├── benchmark.h │ │ ├── bit.h │ │ ├── color.h │ │ ├── dassert.h │ │ ├── deepdata.h │ │ ├── detail │ │ │ ├── detail-README.txt │ │ │ ├── farmhash.h │ │ │ ├── fmt.h │ │ │ └── pugixml │ │ │ │ ├── pugiconfig.hpp │ │ │ │ ├── pugixml.cpp │ │ │ │ └── pugixml.hpp │ │ ├── errorhandler.h │ │ ├── export.h │ │ ├── filesystem.h │ │ ├── filter.h │ │ ├── fmath.h │ │ ├── fstream_mingw.h │ │ ├── function_view.h │ │ ├── half.h │ │ ├── hash.h │ │ ├── image_span.h │ │ ├── image_view.h │ │ ├── imagebuf.h │ │ ├── imagebufalgo.h │ │ ├── imagebufalgo_opencv.h │ │ ├── imagebufalgo_util.h │ │ ├── imagecache.h │ │ ├── imageio.h │ │ ├── memory.h │ │ ├── nsversions.h │ │ ├── oiioversion.h.in │ │ ├── optparser.h │ │ ├── parallel.h │ │ ├── paramlist.h │ │ ├── platform.h │ │ ├── plugin.h │ │ ├── refcnt.h │ │ ├── simd.h │ │ ├── span.h │ │ ├── span_util.h │ │ ├── strided_ptr.h │ │ ├── string_view.h │ │ ├── strongparam.h │ │ ├── strutil.h │ │ ├── sysutil.h │ │ ├── texture.h │ │ ├── thread.h │ │ ├── tiffutils.h │ │ ├── timer.h │ │ ├── type_traits.h │ │ ├── typedesc.h │ │ ├── unittest.h │ │ ├── unordered_map_concurrent.h │ │ ├── ustring.h │ │ ├── vecparam.h │ │ └── version.h │ └── imageio_pvt.h ├── iv │ ├── CMakeLists.txt │ ├── imageviewer.cpp │ ├── imageviewer.h │ ├── ivgl.cpp │ ├── ivgl.h │ ├── ivgl_ocio.cpp │ ├── ivgl_ocio.h │ ├── ivimage.cpp │ ├── ivinfowin.cpp │ ├── ivmain.cpp │ ├── ivpref.cpp │ └── ivutils.h ├── jpeg.imageio │ ├── CMakeLists.txt │ ├── jpeg_pvt.h │ ├── jpeginput.cpp │ └── jpegoutput.cpp ├── jpeg2000.imageio │ ├── CMakeLists.txt │ ├── jpeg2000input.cpp │ └── jpeg2000output.cpp ├── jpegxl.imageio │ ├── CMakeLists.txt │ ├── jxlinput.cpp │ └── jxloutput.cpp ├── libOpenImageIO │ ├── CMakeLists.txt │ ├── bluenoise.cpp │ ├── bluenoise.inc │ ├── buildopts.h.in │ ├── color_ocio.cpp │ ├── color_test.cpp │ ├── compute_test.cpp │ ├── deepdata.cpp │ ├── exif-canon.cpp │ ├── exif.cpp │ ├── exif.h │ ├── formatspec.cpp │ ├── icc.cpp │ ├── image_span_test.cpp │ ├── imagebuf.cpp │ ├── imagebuf_test.cpp │ ├── imagebufalgo.cpp │ ├── imagebufalgo_addsub.cpp │ ├── imagebufalgo_channels.cpp │ ├── imagebufalgo_compare.cpp │ ├── imagebufalgo_copy.cpp │ ├── imagebufalgo_deep.cpp │ ├── imagebufalgo_demosaic.cpp │ ├── imagebufalgo_demosaic_prv.h │ ├── imagebufalgo_draw.cpp │ ├── imagebufalgo_mad.cpp │ ├── imagebufalgo_minmaxchan.cpp │ ├── imagebufalgo_muldiv.cpp │ ├── imagebufalgo_orient.cpp │ ├── imagebufalgo_pixelmath.cpp │ ├── imagebufalgo_test.cpp │ ├── imagebufalgo_xform.cpp │ ├── imagebufalgo_yee.cpp │ ├── imagecache_test.cpp │ ├── imageinout_test.cpp │ ├── imageinput.cpp │ ├── imageio.cpp │ ├── imageioplugin.cpp │ ├── imageoutput.cpp │ ├── imagespec_test.cpp │ ├── imagespeed_test.cpp │ ├── iptc.cpp │ ├── kissfft.hh │ ├── maketexture.cpp │ ├── oiio_gpu.cpp │ ├── printinfo.cpp │ └── xmp.cpp ├── libtexture │ ├── environment.cpp │ ├── imagecache.cpp │ ├── imagecache_memory_print.h │ ├── imagecache_memory_pvt.h │ ├── imagecache_pvt.h │ ├── texoptions.cpp │ ├── texture3d.cpp │ ├── texture_pvt.h │ └── texturesys.cpp ├── libutil │ ├── CMakeLists.txt │ ├── SHA1.cpp │ ├── SHA1.h │ ├── argparse.cpp │ ├── argparse_test.cpp │ ├── atomic_test.cpp │ ├── benchmark.cpp │ ├── errorhandler.cpp │ ├── farmhash.cpp │ ├── filesystem.cpp │ ├── filesystem_test.cpp │ ├── filter.cpp │ ├── filter_test.cpp │ ├── fmath.cpp │ ├── fmath_test.cpp │ ├── hash_test.cpp │ ├── hashes.cpp │ ├── optparser_test.cpp │ ├── parallel_test.cpp │ ├── paramlist.cpp │ ├── paramlist_test.cpp │ ├── plugin.cpp │ ├── simd_test.cpp │ ├── span_test.cpp │ ├── spin_rw_test.cpp │ ├── spinlock_test.cpp │ ├── stb_sprintf.h │ ├── strongparam_test.cpp │ ├── strutil.cpp │ ├── strutil_test.cpp │ ├── sysutil.cpp │ ├── thread.cpp │ ├── thread_test.cpp │ ├── timer.cpp │ ├── timer_test.cpp │ ├── type_traits_test.cpp │ ├── typedesc.cpp │ ├── typedesc_test.cpp │ ├── ustring.cpp │ ├── ustring_test.cpp │ └── xxhash.cpp ├── maketx │ ├── CMakeLists.txt │ └── maketx.cpp ├── nuke │ ├── txReader │ │ ├── CMakeLists.txt │ │ └── txReader.cpp │ └── txWriter │ │ ├── CMakeLists.txt │ │ └── txWriter.cpp ├── null.imageio │ ├── CMakeLists.txt │ └── nullimageio.cpp ├── oiiotool │ ├── CMakeLists.txt │ ├── diff.cpp │ ├── expressions.cpp │ ├── imagerec.cpp │ ├── oiiotool.cpp │ ├── oiiotool.h │ └── printinfo.cpp ├── openexr.imageio │ ├── CMakeLists.txt │ ├── exr_pvt.h │ ├── exrinput.cpp │ ├── exrinput_c.cpp │ └── exroutput.cpp ├── openvdb.imageio │ ├── CMakeLists.txt │ └── openvdbinput.cpp ├── png.imageio │ ├── CMakeLists.txt │ ├── png_pvt.h │ ├── pnginput.cpp │ └── pngoutput.cpp ├── pnm.imageio │ ├── CMakeLists.txt │ ├── pnminput.cpp │ └── pnmoutput.cpp ├── psd.imageio │ ├── CMakeLists.txt │ ├── psd_pvt.h │ └── psdinput.cpp ├── ptex.imageio │ ├── CMakeLists.txt │ └── ptexinput.cpp ├── python │ ├── CMakeLists.txt │ ├── __init__.py │ ├── py_colorconfig.cpp │ ├── py_deepdata.cpp │ ├── py_imagebuf.cpp │ ├── py_imagebufalgo.cpp │ ├── py_imagecache.cpp │ ├── py_imageinput.cpp │ ├── py_imageoutput.cpp │ ├── py_imagespec.cpp │ ├── py_oiio.cpp │ ├── py_oiio.h │ ├── py_paramvalue.cpp │ ├── py_roi.cpp │ ├── py_texturesys.cpp │ ├── py_typedesc.cpp │ ├── python_tests │ └── stubs │ │ ├── CMakeLists.txt │ │ ├── OpenImageIO │ │ ├── __init__.pyi │ │ └── py.typed │ │ ├── generate_stubs.py │ │ └── generate_stubs_local.py ├── r3d.imageio │ ├── CMakeLists.txt │ └── r3dinput.cpp ├── raw.imageio │ ├── CMakeLists.txt │ └── rawinput.cpp ├── rla.imageio │ ├── CMakeLists.txt │ ├── rla_pvt.h │ ├── rlainput.cpp │ └── rlaoutput.cpp ├── sgi.imageio │ ├── CMakeLists.txt │ ├── sgi_pvt.h │ ├── sgiinput.cpp │ └── sgioutput.cpp ├── softimage.imageio │ ├── CMakeLists.txt │ ├── softimage_pvt.cpp │ ├── softimage_pvt.h │ └── softimageinput.cpp ├── targa.imageio │ ├── CMakeLists.txt │ ├── targa_pvt.h │ ├── targainput.cpp │ └── targaoutput.cpp ├── term.imageio │ ├── CMakeLists.txt │ └── termoutput.cpp ├── testtex │ ├── CMakeLists.txt │ └── testtex.cpp ├── tiff.imageio │ ├── CMakeLists.txt │ ├── tiffinput.cpp │ └── tiffoutput.cpp ├── webp.imageio │ ├── CMakeLists.txt │ ├── webpinput.cpp │ └── webpoutput.cpp └── zfile.imageio │ ├── CMakeLists.txt │ └── zfile.cpp └── testsuite ├── TESTSUITE-README.md ├── bmp ├── ref │ └── out.txt ├── run.py └── src │ ├── PRINTER.BMP │ ├── bad-y.bmp │ ├── decodecolormap-corrupt.bmp │ └── g01bg2-v5.bmp ├── cineon ├── ref │ └── out.txt └── run.py ├── cmake-consumer ├── CMakeLists.txt ├── consumer.cpp ├── ref │ └── out.txt └── run.py ├── common ├── bayer.png ├── checker_with_alpha.exr ├── grid-small.exr ├── grid.tif ├── tahoe-small.tif ├── tahoe-tiny.tif ├── textures │ ├── checker.tx │ └── grid.tx ├── unpremult.tif └── with_nans.tif ├── cryptomatte ├── ref │ ├── cmcolors.exr │ └── out.txt ├── run.py └── src │ └── cryptoasset.exr ├── dds ├── ref │ └── out.txt ├── run.py └── src │ ├── crash-1634.dds │ ├── crash-1635.dds │ └── crash-3950.dds ├── diff ├── ref │ ├── out-fmt6.txt │ └── out.txt └── run.py ├── dither ├── ref │ ├── bad.tif │ ├── out.txt │ └── ramp.tif ├── run.py └── src │ └── copybug-input.exr ├── docs-examples-cpp ├── CMakeLists.txt ├── ref │ ├── out-arm.txt │ ├── out-linuxarm.txt │ ├── out.txt │ ├── scanlines.tif │ ├── simple.tif │ └── tiles.tif ├── run.py └── src │ ├── docs-examples-imagebuf.cpp │ ├── docs-examples-imagebufalgo.cpp │ ├── docs-examples-imagecache.cpp │ ├── docs-examples-imageinput.cpp │ ├── docs-examples-imageioapi.cpp │ ├── docs-examples-imageoutput.cpp │ ├── docs-examples-texturesys.cpp │ └── docs-examples-writingplugins.cpp ├── docs-examples-python ├── ref │ ├── out-arm.txt │ ├── out-linuxarm.txt │ ├── out.txt │ └── tiles.tif ├── run.py └── src │ ├── docs-examples-imagebuf.py │ ├── docs-examples-imagebufalgo.py │ ├── docs-examples-imagecache.py │ ├── docs-examples-imageinput.py │ ├── docs-examples-imageioapi.py │ ├── docs-examples-imageoutput.py │ ├── docs-examples-texturesys.py │ └── docs-examples-writingplugins.py ├── dpx ├── ref │ ├── L.dpx │ ├── R.dpx │ ├── grey.tif │ ├── out.txt │ └── stereo.dpx ├── run.py └── src │ └── input_rgb_mattes.tif ├── dup-channels ├── ref │ └── out.txt └── run.py ├── ffmpeg ├── ref │ ├── out-ffmpeg6.1.txt │ ├── out-ffmpeg8.0.txt │ ├── vp9_display_p3.mkv │ └── vp9_rec2100_pq.mkv └── run.py ├── filters ├── ref │ ├── blackman-harris.exr │ ├── box.exr │ ├── bspline.exr │ ├── catmull-rom.exr │ ├── cubic.exr │ ├── disk.exr │ ├── gaussian.exr │ ├── keys.exr │ ├── lanczos3.exr │ ├── mitchell.exr │ ├── nuke-lanczos6.exr │ ├── out.txt │ ├── radial-lanczos3.exr │ ├── rifman.exr │ ├── sharp-gaussian.exr │ ├── simon.exr │ ├── sinc.exr │ └── triangle.exr └── run.py ├── fits ├── ref │ └── out.txt └── run.py ├── gif ├── ref │ ├── out.txt │ └── tahoe-tiny.gif └── run.py ├── gpsread ├── ref │ ├── out-alt.txt │ ├── out-jpeg9d.txt │ └── out.txt └── run.py ├── hdr ├── ref │ └── out.txt └── run.py ├── heif ├── ref │ ├── Chimera-AV1-8bit-162.avif │ ├── IMG_7702_small.heic │ ├── out-libheif1.12-orient.txt │ ├── out-libheif1.4.txt │ ├── out-libheif1.5.txt │ ├── out-libheif1.9-alt2.txt │ ├── out-libheif1.9-with-av1-alt2.txt │ ├── out-libheif1.9-with-av1.txt │ ├── out-libheif1.9.txt │ └── test-10bit.avif └── run.py ├── htj2k ├── ref │ └── out.txt └── run.py ├── ico ├── ref │ └── out.txt ├── run.py └── src │ └── bad1.ico ├── iff ├── ref │ └── out.txt └── run.py ├── igrep ├── ref │ └── out.txt └── run.py ├── iinfo ├── ref │ ├── out-fmt6.txt │ └── out.txt ├── run.py └── src │ ├── mip.tif │ ├── subimage.tif │ ├── tiny-az.exr │ └── tinydeep.exr ├── jpeg-corrupt ├── ref │ ├── out-alt.txt │ ├── out-alt2.txt │ ├── out-alt3.txt │ ├── out-alt4.txt │ └── out.txt ├── run.py └── src │ ├── corrupt-exif-1626.jpg │ ├── corrupt-exif.jpg │ ├── corrupt-icc-4551.jpg │ └── corrupt-icc-4552.jpg ├── jpeg-metadata ├── ref │ └── out.txt ├── run.py └── src │ └── blender-render.jpg ├── jpeg-ultrahdr ├── ref │ ├── out-macarm.txt │ └── out.txt └── run.py ├── jpeg ├── ref │ ├── out.txt │ └── rgb-from-YCbCrK.tif ├── run.py └── src │ └── YCbCrK.jpg ├── jpeg2000-j2kp4files ├── ref │ ├── out-alt.txt │ ├── out-spinux.txt │ └── out.txt └── run.py ├── jpeg2000 ├── ref │ └── out.txt └── run.py ├── jxl ├── ref │ ├── out.txt │ └── test-jxl.icc └── run.py ├── maketx ├── ref │ ├── bumpslope-central.exr │ ├── bumpslope-normal.exr │ ├── bumpslope.exr │ ├── out-alt.txt │ ├── out-macarm.txt │ ├── out.txt │ └── uffizi_latlong_env-128.exr ├── run.py └── src │ ├── bump.exr │ ├── normal.exr │ └── uffizi_probe-128.exr ├── misnamed-file ├── ref │ └── out.txt └── run.py ├── missingcolor ├── ref │ ├── missing.tif │ ├── out.err-openexrcore.txt │ ├── out.err.txt │ └── out.txt ├── run.py └── src │ ├── makepartialexr.py │ └── partial.exr ├── nonwhole-tiles ├── ref │ └── out.txt └── run.py ├── null ├── ref │ └── out.txt └── run.py ├── oiiotool-attribs ├── ref │ ├── out-jpeg9d.txt │ ├── out.txt │ ├── test-webp.icc │ └── test.icc ├── run.py └── src │ └── regex_list.txt ├── oiiotool-color ├── ref │ ├── cmap-blue-red.tif │ ├── cmap-heat.tif │ ├── cmap-inferno.tif │ ├── cmap-magma.tif │ ├── cmap-plasma.tif │ ├── cmap-spectrum.tif │ ├── cmap-turbo.tif │ ├── cmap-viridis.tif │ ├── colormap-custom.tif │ ├── colormap-inferno.tif │ ├── contrast-inverse.tif │ ├── contrast-shrink.tif │ ├── contrast-sigmoid5.tif │ ├── contrast-stretch.tif │ ├── contrast-threshold.tif │ ├── display-sRGB.tif │ ├── grey_sRGB.tif │ ├── grey_sRGB_un.tif │ ├── greyalpha_Cineon.tif │ ├── greyalpha_Cineon_un.tif │ ├── greyalpha_sRGB.tif │ ├── greyalpha_sRGB_un-ocio22.tif │ ├── greyalpha_sRGB_un.tif │ ├── look-default.tif │ ├── out.txt │ ├── premult.exr │ ├── rgbfromtga.png │ ├── tahoe-ccmatrix.tif │ ├── tahoe-sat0.tif │ ├── tahoe-sat2.tif │ └── unpremult.exr ├── run.py └── src │ └── rgba.tga ├── oiiotool-composite ├── ref │ ├── a_over_b.exr │ └── out.txt ├── run.py └── src │ ├── a.exr │ └── b.exr ├── oiiotool-control ├── ref │ ├── exprcropped.tif │ ├── exprgradient.tif │ ├── exprstrcatlzw.tif │ ├── out.txt │ └── tahoe-contraststretch.tif └── run.py ├── oiiotool-copy ├── ref │ ├── allhalf.exr │ ├── ch-err.exr │ ├── ch-err2.exr │ ├── ch-rgba.exr │ ├── ch-z.exr │ ├── chanshuffle.tif │ ├── chappend-3images.exr │ ├── chappend-rgbaz.exr │ ├── chname.exr │ ├── crop.tif │ ├── cut.tif │ ├── greenmeta-replace.exr │ ├── mosaic.tif │ ├── mosaicfit.tif │ ├── out.txt │ ├── pasted.tif │ ├── rgbahalf-zfloat.exr │ └── rgonly.exr ├── run.py └── src │ └── rgbaz.exr ├── oiiotool-deep ├── ref │ ├── ch.exr │ ├── crop1.exr │ ├── crop2.exr │ ├── deep_addc.exr │ ├── deep_divc.exr │ ├── deep_mulc.exr │ ├── deep_subc.exr │ ├── deepen.exr │ ├── deepmerge.exr │ ├── flat.exr │ ├── out-fmt6.txt │ ├── out.txt │ ├── resampled-balls.exr │ ├── trim1.exr │ └── trim2.exr ├── run.py └── src │ ├── az.exr │ ├── deep-nosamples.exr │ ├── deep-onesample.exr │ └── deepalpha.exr ├── oiiotool-demosaic ├── ref │ └── out.txt └── run.py ├── oiiotool-fixnan ├── ref │ ├── black.exr │ ├── box3.exr │ └── out.txt ├── run.py └── src │ └── bad.exr ├── oiiotool-layers ├── ref │ ├── out.txt │ └── parts.exr ├── run.py └── src │ └── layers.exr ├── oiiotool-maketx ├── ref │ ├── out-macarm.txt │ ├── out-rhel7.txt │ ├── out-win.txt │ └── out.txt └── run.py ├── oiiotool-pattern ├── ref │ ├── box.tif │ ├── fill4.tif │ ├── filled.tif │ ├── fillh.tif │ ├── fillv.tif │ ├── lines.tif │ ├── noise-gauss.tif │ ├── noise-salt.tif │ ├── noise-uniform3.tif │ ├── out.txt │ ├── pattern-const.tif │ ├── pattern-gradient4.tif │ ├── pattern-gradienth.tif │ ├── pattern-gradientv.tif │ └── points.tif └── run.py ├── oiiotool-readerror ├── TRAVIS_SKIP_LSAN ├── ref │ ├── out.err-alt.txt │ ├── out.err-alt2.txt │ ├── out.err-alt3-exr33.txt │ ├── out.err-debug.txt │ ├── out.err-openexrcore.txt │ ├── out.err.txt │ └── out.txt ├── run.py └── src │ └── incomplete.exr ├── oiiotool-spi ├── ref │ └── out.txt └── run.py ├── oiiotool-subimage ├── ref │ ├── mip4.tif │ ├── out.txt │ ├── subimage1.exr │ ├── subimage2.exr │ ├── subimageB1.exr │ ├── subimageD3.exr │ ├── subimages-2.exr │ └── subimages-4.exr └── run.py ├── oiiotool-text ├── ref │ ├── aligned.tif │ ├── fontbyfamily.tif │ ├── out.txt │ ├── text-alt.tif │ ├── text-freetype2.7.tif │ ├── text.tif │ ├── textalpha.tif │ ├── textshadowed-freetype2.4.11.tif │ ├── textshadowed.tif │ ├── unicode-freetype2.13.4.tif │ ├── unicode-freetype2.8.tif │ └── unicode.tif └── run.py ├── oiiotool-xform ├── ref │ ├── cshift.tif │ ├── fit.tif │ ├── fit2.tif │ ├── fit3.tif │ ├── fit4.exr │ ├── fith-height-200x200.exr │ ├── fith-height-300x300.exr │ ├── fith-letterbox-200x200.exr │ ├── fith-letterbox-300x300.exr │ ├── fith-width-200x200.exr │ ├── fith-width-300x300.exr │ ├── fitw-height-200x200.exr │ ├── fitw-height-300x300.exr │ ├── fitw-letterbox-200x200.exr │ ├── fitw-letterbox-300x300.exr │ ├── fitw-width-200x200.exr │ ├── fitw-width-300x300.exr │ ├── flip-crop.tif │ ├── flip.tif │ ├── flipflop-crop.tif │ ├── flipflop.tif │ ├── flop-crop.tif │ ├── flop.tif │ ├── out.txt │ ├── pixelaspect.tif │ ├── reorient1.tif │ ├── reorient2.tif │ ├── reorient3.tif │ ├── resample.tif │ ├── resize.tif │ ├── resize2.tif │ ├── resize512.tif │ ├── resize64.tif │ ├── resized-offset.exr │ ├── resizefrom.tif │ ├── resizefromto.tif │ ├── resizefromtooffset.tif │ ├── rotate270-crop.tif │ ├── rotate270.tif │ ├── rotate90-crop.tif │ ├── rotate90.tif │ ├── rotated-offcenter.tif │ ├── rotated.tif │ ├── rotated360.tif │ ├── st_warped.tif │ ├── transpose-crop.tif │ ├── transpose.tif │ └── warped.tif ├── run.py └── src │ └── target1.exr ├── oiiotool ├── ref │ ├── abs.exr │ ├── absdiff.exr │ ├── absdiffc.exr │ ├── add.exr │ ├── allhalf.exr │ ├── autotrim.tif │ ├── box_over_missing2.tif │ ├── box_over_missing3.tif │ ├── bspline-blur.tif │ ├── bsplinekernel.exr │ ├── cadd1.exr │ ├── cadd2.exr │ ├── chsum.tif │ ├── cmax1.exr │ ├── cmax2.exr │ ├── cmin1.exr │ ├── cmin2.exr │ ├── cmul1.exr │ ├── cmul2.exr │ ├── const5-rgb.tif │ ├── cpow1.exr │ ├── cpow2.exr │ ├── dilate.tif │ ├── div.exr │ ├── divc1.exr │ ├── divc2.exr │ ├── erode.tif │ ├── fft.exr │ ├── filled.tif │ ├── gauss5x5-blur.tif │ ├── grid-clamped.tif │ ├── growholes.tif │ ├── histogram_cumulative.tif │ ├── histogram_input.png │ ├── histogram_regular.tif │ ├── hole.tif │ ├── ifft.exr │ ├── invert.tif │ ├── labeladd.exr │ ├── mad.exr │ ├── max.exr │ ├── maxchan.tif │ ├── min.exr │ ├── minchan.tif │ ├── mul.exr │ ├── normalize.exr │ ├── normalize_in.exr │ ├── normalize_offsetin.exr │ ├── normalize_offsetscale.exr │ ├── normalize_offsetscaleout.exr │ ├── normalize_scale.exr │ ├── out.txt │ ├── polar.exr │ ├── rangecompress-luma.tif │ ├── rangecompress.tif │ ├── rangeexpand-luma.tif │ ├── rangeexpand.tif │ ├── rotate180.tif │ ├── sub.exr │ ├── subc.exr │ ├── subimage-individual.exr │ ├── subimage-noB.exr │ ├── subimage1.exr │ ├── subimage2.exr │ ├── subimageB1.exr │ ├── subimageD3.exr │ ├── subimages-2.exr │ ├── subimages-4.exr │ ├── tahoe-filled.tif │ ├── tahoe-laplacian.tif │ ├── tahoe-median.tif │ ├── trim.tif │ ├── trimempty.tif │ ├── trimemptysubimages.tif │ ├── trimsubimages.tif │ ├── unpolar.exr │ ├── unsharp-median.tif │ └── unsharp.tif ├── run.py └── src │ ├── image.tif │ ├── morphsource.tif │ ├── norm.exr │ └── normoffset.exr ├── openexr-chroma ├── ref │ └── out.txt └── run.py ├── openexr-compression ├── ref │ ├── out-b44.exr │ ├── out-dwaa.exr │ ├── out-zip.exr │ └── out.txt └── run.py ├── openexr-copy ├── ref │ ├── compressed-b44.exr │ ├── compressed-b44a.exr │ ├── compressed-dwaa.exr │ ├── compressed-dwab.exr │ ├── compressed-pxr24.exr │ └── out.txt ├── run.py └── src │ └── test_recompression.py ├── openexr-damaged ├── ref │ ├── out-exr3.0-clang-ptex.txt │ └── out-exr3.0.txt └── run.py ├── openexr-decreasingy ├── ref │ └── out.txt └── run.py ├── openexr-idmanifest ├── ref │ └── out.txt ├── run.py └── src │ └── manifest.exr ├── openexr-luminance-chroma ├── ref │ ├── out-macarm.txt │ └── out.txt └── run.py ├── openexr-multires ├── ref │ └── out.txt └── run.py ├── openexr-suite ├── ref │ └── out.txt └── run.py ├── openexr-v2 ├── ref │ └── out.txt └── run.py ├── openexr-window ├── ref │ └── out.txt └── run.py ├── openvdb ├── ref │ ├── out.txt │ ├── sphere.exr │ └── sphereCd.exr ├── run.py └── src │ ├── sphere.vdb │ └── sphereCd.vdb ├── perchannel ├── ref │ └── out.txt └── run.py ├── png-damaged ├── ref │ └── out.txt └── run.py ├── png ├── ref │ ├── out-libpng15.txt │ ├── out.txt │ └── test16.png ├── run.py └── src │ ├── alphagamma.png │ └── gimp_gradient.png ├── pnm ├── ref │ └── out.txt ├── run.py └── src │ ├── bad-4552.pgm │ ├── bad-4553.pgm │ ├── bw-ascii.pbm │ ├── bw-binary.pbm │ ├── grey-ascii.pgm │ ├── grey-binary.pgm │ ├── rgb-ascii.ppm │ └── rgb-binary.ppm ├── psd-colormodes ├── ref │ ├── cmyk-with-alpha.tif │ ├── out.txt │ ├── pattern2-16-cmyk.psd.tif │ ├── pattern2-16-grayscale.psd.tif │ ├── pattern2-8-cmyk.psd.tif │ ├── pattern2-8-grayscale.psd.tif │ ├── pattern2-alpha.tif │ └── pattern2.tif ├── run.py └── src │ ├── cmyk-with-alpha.psd │ ├── pattern2-16-cmyk.psd │ ├── pattern2-16-grayscale.psd │ ├── pattern2-16-lab.psd │ ├── pattern2-16-multichannel.psd │ ├── pattern2-16-rgb.psd │ ├── pattern2-32-grayscale.psd │ ├── pattern2-32-rgb.psd │ ├── pattern2-8-cmyk.psd │ ├── pattern2-8-grayscale.psd │ ├── pattern2-8-indexed.psd │ ├── pattern2-8-lab.psd │ ├── pattern2-8-multichannel.psd │ └── pattern2-8-rgb.psd ├── psd ├── ref │ ├── out-linuxarm.txt │ └── out.txt ├── run.py └── src │ ├── Layers_16bit_RGB.psd │ ├── Layers_32bit_RGB.psd │ ├── Layers_8bit_RGB.psd │ ├── crash-psd-exif-1632.psd │ ├── crash-thumb-1626.psd │ ├── different-mask-size.psd │ └── layer-mask.psd ├── ptex ├── ref │ └── out.txt ├── run.py └── src │ └── triangle.ptx ├── python-colorconfig ├── ref │ ├── out-ocio23.txt │ ├── out-ocio24.txt │ ├── out-ocio25.txt │ └── out.txt ├── run.py └── src │ ├── oiio_test_v0.9.2.ocio │ └── test_colorconfig.py ├── python-deep ├── ref │ └── out.txt ├── run.py └── src │ └── test_deep.py ├── python-imagebuf ├── ref │ ├── invalid_repr_png.png │ ├── multipart.exr │ ├── out-alt-python3.txt │ ├── out-alt.txt │ ├── out-python3.txt │ ├── out.tif │ ├── out.txt │ ├── outarray.tif │ ├── outarrayB.tif │ ├── outarrayH.tif │ ├── outtuple.tif │ ├── perchan.exr │ └── valid_repr_png.png ├── run.py └── src │ ├── AllHalfValues.exr │ └── test_imagebuf.py ├── python-imagebufalgo ├── ref │ ├── black.tif │ ├── bluenoise_image3.tif │ ├── checker.tif │ ├── clamped-with-float.exr │ ├── crop.tif │ ├── csub2.exr │ ├── mad2.exr │ ├── mad3.exr │ ├── maxchan.tif │ ├── maximg.tif │ ├── maxval.tif │ ├── minchan.tif │ ├── minimg.tif │ ├── minval.tif │ ├── noise-blue3.tif │ ├── norm.exr │ ├── normalize.exr │ ├── normalize_in.exr │ ├── normalize_offsetin.exr │ ├── normalize_offsetscale.exr │ ├── normalize_offsetscaleout.exr │ ├── normalize_scale.exr │ ├── normoffset.exr │ ├── out-freetype2.4.11.txt │ ├── out-macarm.txt │ ├── out-python3-freetype2.4.11.txt │ ├── out-python3.txt │ ├── out.tif │ ├── out.txt │ ├── saturate-0.tif │ ├── saturate-2.tif │ ├── tahoe-small.tx │ ├── textcentered-freetype2.4.11.tif │ └── textcentered.tif ├── run.py └── src │ └── test_imagebufalgo.py ├── python-imagecache ├── ref │ ├── out-win.txt │ └── out.txt ├── run.py └── src │ └── test_imagecache.py ├── python-imageinput ├── ref │ ├── out-alt.txt │ ├── out-alt2.txt │ ├── out-py37-jpeg9d.txt │ ├── out-python3-win-2.txt │ ├── out-python3-win.txt │ ├── out-python3.txt │ └── out.txt ├── run.py └── src │ └── test_imageinput.py ├── python-imageoutput ├── ref │ ├── multipart.exr │ └── out.txt ├── run.py └── src │ └── test_imageoutput.py ├── python-imagespec ├── ref │ ├── out-python3.txt │ └── out.txt ├── run.py └── src │ └── test_imagespec.py ├── python-paramlist ├── ref │ └── out.txt ├── run.py └── src │ └── test_paramlist.py ├── python-roi ├── ref │ └── out.txt ├── run.py └── src │ └── test_roi.py ├── python-texturesys ├── ref │ ├── out-windows.txt │ └── out.txt ├── run.py └── src │ └── test_texture_sys.py ├── python-typedesc ├── ref │ └── out.txt ├── run.py └── src │ └── test_typedesc.py ├── rational ├── ref │ └── out.txt ├── run.py └── src │ └── test.exr ├── raw ├── ref │ ├── RAW_CANON_EOS_7D.CR2-libraw0.20.0.tif │ ├── RAW_CANON_EOS_7D.CR2.tif │ ├── RAW_FUJI_F700.RAF-libraw0.20.tif │ ├── RAW_FUJI_F700.RAF-libraw0.21.tif │ ├── RAW_FUJI_F700.RAF.tif │ ├── RAW_NIKON_D3X.NEF.tif │ ├── RAW_OLYMPUS_E3.ORF-libraw0.20.0.tif │ ├── RAW_OLYMPUS_E3.ORF.tif │ ├── RAW_PANASONIC_G1.RW2.tif │ ├── RAW_PENTAX_K200D.PEF.tif │ ├── RAW_SONY_A300.ARW.tif │ ├── out-libraw-0.20.2-gh.txt │ ├── out-libraw0.20.0-gh.txt │ ├── out-libraw0.20.0.txt │ ├── out-libraw0.21.0-gh.txt │ ├── out-libraw0.21.0-mac.txt │ └── out.txt └── run.py ├── rla ├── ref │ ├── out.txt │ └── rlacrop.rla ├── run.py └── src │ ├── crash-1.rla │ ├── crash-1629.rla │ └── crash-3951.rla ├── runtest.py ├── sgi ├── ref │ ├── norle-16.sgi │ ├── norle-8.sgi │ ├── out.txt │ ├── rle-16.sgi │ └── rle-8.sgi └── run.py ├── softimage ├── ref │ └── out.txt └── run.py ├── targa-thumbnail ├── ref │ ├── CBW8.TGA.tif │ ├── CCM8.TGA.tif │ ├── CTC16.TGA.tif │ ├── CTC24.TGA.tif │ ├── CTC32.TGA.tif │ ├── UBW8.TGA.tif │ ├── UCM8.TGA.tif │ ├── UTC16.TGA.tif │ ├── UTC24.TGA.tif │ ├── UTC32.TGA.tif │ └── out.txt ├── run.py └── src │ └── extractthumb.py ├── targa ├── ref │ └── out.txt ├── run.py └── src │ ├── 1x1.tga │ ├── crash1.tga │ ├── crash1707.tga │ ├── crash1708.tga │ ├── crash2.tga │ ├── crash3.tga │ ├── crash3952.tga │ ├── crash4.tga │ ├── crash5.tga │ └── crash6.tga ├── term ├── ref │ ├── 24bit-space.out │ ├── 24bit.out │ ├── dither-alt.out │ ├── dither.out │ ├── iterm2-alt.out │ ├── iterm2.out │ └── out.txt └── run.py ├── texture-blurtube ├── ref │ ├── checker-0.00.tif │ ├── checker-0.02.tif │ ├── checker-0.05.tif │ ├── checker-0.10.tif │ ├── checker-0.20.tif │ ├── grid-0.00.tif │ ├── grid-0.02.tif │ ├── grid-0.05.tif │ ├── grid-0.10.tif │ ├── grid-0.20.tif │ ├── out.exr │ └── out.txt └── run.py ├── texture-colorspace ├── ref │ ├── cc.exr │ ├── nocc.exr │ ├── out-batch.txt │ └── out.txt └── run.py ├── texture-crop ├── ref │ └── out.exr └── run.py ├── texture-cropover ├── ref │ └── out.exr └── run.py ├── texture-derivs ├── ref │ ├── out.exr │ ├── out.exr-ds.exr │ └── out.exr-dt.exr ├── run.py └── src │ └── ramp.exr ├── texture-env ├── ref │ ├── 5chan.exr │ ├── bicubic-trilinear.exr │ ├── bilinear-onelevel.exr │ ├── closest-nomip.exr │ ├── env-handle.exr │ ├── env-handle.exr-ds.exr │ ├── env-handle.exr-dt.exr │ ├── env.exr │ ├── out-batch.txt │ ├── out.txt │ ├── subimage0.exr │ ├── subimagefred.exr │ └── subimagemissing.exr └── run.py ├── texture-fat ├── ref │ └── out.exr ├── run.py └── src │ └── horizgrid.tx ├── texture-fill ├── ref │ ├── out.exr │ └── out.txt ├── run.py └── src │ └── gray.png ├── texture-filtersize-stochastic ├── ref │ └── out.tif └── run.py ├── texture-filtersize ├── ref │ └── out.tif └── run.py ├── texture-flipt ├── ref │ ├── out.exr │ ├── out.exr-ds.exr │ └── out.exr-dt.exr └── run.py ├── texture-gettexels ├── ref │ └── postage.tif └── run.py ├── texture-gray ├── ref │ └── out.exr ├── run.py └── src │ └── gray.png ├── texture-half ├── ref │ ├── out-macarm.exr │ └── out.exr └── run.py ├── texture-icwrite ├── ref │ ├── out1.tif │ ├── out2.tif │ ├── out3.tif │ └── out4.tif └── run.py ├── texture-interp-bicubic ├── ref │ └── out.tif └── run.py ├── texture-interp-bilinear ├── ref │ └── out.tif └── run.py ├── texture-interp-closest ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-levels-stochaniso ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-levels-stochmip ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-maxres ├── ref │ ├── out.tif │ └── out.txt └── run.py ├── texture-mip-nomip ├── ref │ └── out.tif └── run.py ├── texture-mip-onelevel ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-mip-stochasticaniso ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-mip-stochastictrilinear ├── ref │ ├── out-macarm.tif │ └── out.tif └── run.py ├── texture-mip-trilinear ├── ref │ └── out.tif └── run.py ├── texture-missing ├── TRAVIS_SKIP_LSAN ├── ref │ └── out.exr └── run.py ├── texture-overscan ├── ref │ ├── out-exact.exr │ ├── out-over.exr │ └── out-overclamp.exr └── run.py ├── texture-pointsample ├── ref │ └── out.exr └── run.py ├── texture-res ├── README ├── ref │ └── out.tif └── run.py ├── texture-skinny ├── ref │ └── out.exr ├── run.py └── src │ └── vertgrid.tx ├── texture-stats ├── ref │ └── out.exr └── run.py ├── texture-texture3d ├── ref │ ├── closest.exr │ ├── out-5chan.exr │ ├── out-batch.txt │ ├── out-handle.exr │ ├── out-subimage0.exr │ ├── out-subimagedensity.exr │ ├── out-subimagemissing.exr │ ├── out.exr │ └── out.txt └── run.py ├── texture-threadtimes ├── ref │ └── out.txt └── run.py ├── texture-udim ├── TRAVIS_SKIP_LSAN ├── ref │ ├── out-batched.txt │ ├── out-freetype2.7.tif │ ├── out.tif │ ├── out.txt │ ├── out2-freetype2.7.tif │ ├── out2.tif │ └── out3.tif └── run.py ├── texture-udim2 ├── TRAVIS_SKIP_LSAN ├── ref │ ├── out-batched.txt │ ├── out-freetype2.7.tif │ ├── out.txt │ ├── out2-freetype2.7.tif │ ├── out3-freetype2.7.tif │ ├── out4-freetype2.7.tif │ └── out5-freetype2.7.tif └── run.py ├── texture-uint16 ├── ref │ ├── out-macarm.exr │ └── out.exr └── run.py ├── texture-uint8 ├── ref │ └── out.exr └── run.py ├── texture-width0blur ├── ref │ └── out.tif └── run.py ├── texture-wrapfill ├── ref │ ├── out1.tif │ └── out3.tif └── run.py ├── tiff-depths ├── ref │ ├── cmyk_as_cmyk.tif │ ├── out-icc.txt │ ├── out-linuxarm.txt │ └── out.txt └── run.py ├── tiff-misc ├── crash-1633.tif ├── crash-1643.tif ├── ref │ ├── check1.tif │ ├── out-libtiff403-b.txt │ ├── out-libtiff403-c.txt │ ├── out-libtiff403.txt │ ├── out-libtiff410.txt │ ├── out-libtiff430.txt │ ├── out.txt │ └── separate.tif ├── run.py ├── separate.tif └── src │ ├── corrupt1.tif │ ├── crash-1709.tif │ └── separate.tif ├── tiff-suite ├── ref │ ├── out-alt.txt │ ├── out-alt2.txt │ ├── out-jpeg9b.txt │ ├── out-jpeg9d-alt.txt │ └── out.txt └── run.py ├── webp ├── ref │ └── out-webp1.1.txt └── run.py ├── win32 └── version_check.ps1 └── zfile ├── ref ├── out-macarm.txt ├── out.txt └── out.zfile └── run.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/analysis.yml -------------------------------------------------------------------------------- /.github/workflows/build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/build-steps.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-sign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/release-sign.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.github/workflows/wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.mailmap -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /ASWF/CLA-corporate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/ASWF/CLA-corporate.md -------------------------------------------------------------------------------- /ASWF/CLA-individual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/ASWF/CLA-individual.md -------------------------------------------------------------------------------- /ASWF/Technical-Charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/ASWF/Technical-Charter.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/CREDITS.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/README.md -------------------------------------------------------------------------------- /RELICENSING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/RELICENSING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRD-PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/THIRD-PARTY.md -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/conanfile.txt -------------------------------------------------------------------------------- /docs/CHANGES-0.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/CHANGES-0.x.md -------------------------------------------------------------------------------- /docs/CHANGES-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/CHANGES-1.x.md -------------------------------------------------------------------------------- /docs/CHANGES-2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/CHANGES-2.x.md -------------------------------------------------------------------------------- /docs/Deprecations-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/Deprecations-3.0.md -------------------------------------------------------------------------------- /docs/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/QuickStart.md -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/ROADMAP.md -------------------------------------------------------------------------------- /docs/dev/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/Architecture.md -------------------------------------------------------------------------------- /docs/dev/Build_Profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/Build_Profiling.md -------------------------------------------------------------------------------- /docs/dev/Changes-skeleton-major.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/Changes-skeleton-major.md -------------------------------------------------------------------------------- /docs/dev/Changes-skeleton-patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/Changes-skeleton-patch.md -------------------------------------------------------------------------------- /docs/dev/CodeReview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/CodeReview.md -------------------------------------------------------------------------------- /docs/dev/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/docs/dev/RELEASING.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/bmp.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/bmp.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/bmp.imageio/bmp_pvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/bmp.imageio/bmp_pvt.cpp -------------------------------------------------------------------------------- /src/bmp.imageio/bmp_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/bmp.imageio/bmp_pvt.h -------------------------------------------------------------------------------- /src/bmp.imageio/bmpinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/bmp.imageio/bmpinput.cpp -------------------------------------------------------------------------------- /src/bmp.imageio/bmpoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/bmp.imageio/bmpoutput.cpp -------------------------------------------------------------------------------- /src/build-scripts/OpenImageIO.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/OpenImageIO.pc.in -------------------------------------------------------------------------------- /src/build-scripts/build_Ptex.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_Ptex.bash -------------------------------------------------------------------------------- /src/build-scripts/build_ccache.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_ccache.bash -------------------------------------------------------------------------------- /src/build-scripts/build_cmake.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_cmake.bash -------------------------------------------------------------------------------- /src/build-scripts/build_gif.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_gif.bash -------------------------------------------------------------------------------- /src/build-scripts/build_libpng.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_libpng.bash -------------------------------------------------------------------------------- /src/build-scripts/build_libraw.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_libraw.bash -------------------------------------------------------------------------------- /src/build-scripts/build_llvm.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_llvm.bash -------------------------------------------------------------------------------- /src/build-scripts/build_ninja.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_ninja.bash -------------------------------------------------------------------------------- /src/build-scripts/build_webp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_webp.bash -------------------------------------------------------------------------------- /src/build-scripts/build_zlib.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/build_zlib.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-abicheck.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-abicheck.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-benchmark.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-benchmark.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-build.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-coverage.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-coverage.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-startup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-startup.bash -------------------------------------------------------------------------------- /src/build-scripts/ci-test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ci-test.bash -------------------------------------------------------------------------------- /src/build-scripts/hidesymbols.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/hidesymbols.map -------------------------------------------------------------------------------- /src/build-scripts/ninjatracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/ninjatracing.py -------------------------------------------------------------------------------- /src/build-scripts/nosanitize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/nosanitize.txt -------------------------------------------------------------------------------- /src/build-scripts/oneAPI.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/oneAPI.repo -------------------------------------------------------------------------------- /src/build-scripts/save-env.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/build-scripts/save-env.bash -------------------------------------------------------------------------------- /src/cineon.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cineon.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/cineon.imageio/cineoninput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cineon.imageio/cineoninput.cpp -------------------------------------------------------------------------------- /src/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/Config.cmake.in -------------------------------------------------------------------------------- /src/cmake/add_oiio_plugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/add_oiio_plugin.cmake -------------------------------------------------------------------------------- /src/cmake/build_Freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_Freetype.cmake -------------------------------------------------------------------------------- /src/cmake/build_GIF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_GIF.cmake -------------------------------------------------------------------------------- /src/cmake/build_GIF_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_GIF_CMakeLists.txt -------------------------------------------------------------------------------- /src/cmake/build_Imath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_Imath.cmake -------------------------------------------------------------------------------- /src/cmake/build_OpenColorIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_OpenColorIO.cmake -------------------------------------------------------------------------------- /src/cmake/build_OpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_OpenEXR.cmake -------------------------------------------------------------------------------- /src/cmake/build_OpenJPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_OpenJPEG.cmake -------------------------------------------------------------------------------- /src/cmake/build_PNG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_PNG.cmake -------------------------------------------------------------------------------- /src/cmake/build_Robinmap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_Robinmap.cmake -------------------------------------------------------------------------------- /src/cmake/build_TIFF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_TIFF.cmake -------------------------------------------------------------------------------- /src/cmake/build_WebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_WebP.cmake -------------------------------------------------------------------------------- /src/cmake/build_ZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_ZLIB.cmake -------------------------------------------------------------------------------- /src/cmake/build_expat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_expat.cmake -------------------------------------------------------------------------------- /src/cmake/build_fmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_fmt.cmake -------------------------------------------------------------------------------- /src/cmake/build_libdeflate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_libdeflate.cmake -------------------------------------------------------------------------------- /src/cmake/build_libjpeg-turbo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_libjpeg-turbo.cmake -------------------------------------------------------------------------------- /src/cmake/build_libuhdr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_libuhdr.cmake -------------------------------------------------------------------------------- /src/cmake/build_minizip-ng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_minizip-ng.cmake -------------------------------------------------------------------------------- /src/cmake/build_pybind11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_pybind11.cmake -------------------------------------------------------------------------------- /src/cmake/build_pystring.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_pystring.cmake -------------------------------------------------------------------------------- /src/cmake/build_yaml-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/build_yaml-cpp.cmake -------------------------------------------------------------------------------- /src/cmake/check_is_enabled.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/check_is_enabled.cmake -------------------------------------------------------------------------------- /src/cmake/colors.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/colors.cmake -------------------------------------------------------------------------------- /src/cmake/compiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/compiler.cmake -------------------------------------------------------------------------------- /src/cmake/cuda_macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/cuda_macros.cmake -------------------------------------------------------------------------------- /src/cmake/dependency_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/dependency_utils.cmake -------------------------------------------------------------------------------- /src/cmake/externalpackages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/externalpackages.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindFFmpeg.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindJXL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindJXL.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindLibRaw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindLibRaw.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindLibheif.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindLibheif.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindNuke.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindNuke.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindOpenCV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindOpenCV.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindOpenEXR.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindOpenVDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindOpenVDB.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindPtex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindPtex.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindR3DSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindR3DSDK.cmake -------------------------------------------------------------------------------- /src/cmake/modules/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/FindTBB.cmake -------------------------------------------------------------------------------- /src/cmake/modules/Findlibuhdr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/Findlibuhdr.cmake -------------------------------------------------------------------------------- /src/cmake/modules/Findpugixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/modules/Findpugixml.cmake -------------------------------------------------------------------------------- /src/cmake/packaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/packaging.cmake -------------------------------------------------------------------------------- /src/cmake/pythonutils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/pythonutils.cmake -------------------------------------------------------------------------------- /src/cmake/set_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/set_utils.cmake -------------------------------------------------------------------------------- /src/cmake/testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/cmake/testing.cmake -------------------------------------------------------------------------------- /src/dds.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dds.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/dds.imageio/bcdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dds.imageio/bcdec.h -------------------------------------------------------------------------------- /src/dds.imageio/dds_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dds.imageio/dds_pvt.h -------------------------------------------------------------------------------- /src/dds.imageio/ddsinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dds.imageio/ddsinput.cpp -------------------------------------------------------------------------------- /src/dicom.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dicom.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/dicom.imageio/dicominput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dicom.imageio/dicominput.cpp -------------------------------------------------------------------------------- /src/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/.gitignore -------------------------------------------------------------------------------- /src/doc/Building_the_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/Building_the_docs.md -------------------------------------------------------------------------------- /src/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/doc/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/Description.txt -------------------------------------------------------------------------------- /src/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/Doxyfile -------------------------------------------------------------------------------- /src/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/Makefile -------------------------------------------------------------------------------- /src/doc/Welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/Welcome.txt -------------------------------------------------------------------------------- /src/doc/builtinplugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/builtinplugins.rst -------------------------------------------------------------------------------- /src/doc/cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/cliff.toml -------------------------------------------------------------------------------- /src/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/conf.py -------------------------------------------------------------------------------- /src/doc/copyr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/copyr.rst -------------------------------------------------------------------------------- /src/doc/figures/CC-BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/CC-BY.png -------------------------------------------------------------------------------- /src/doc/figures/addc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/addc.jpg -------------------------------------------------------------------------------- /src/doc/figures/bluenoise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/bluenoise.jpg -------------------------------------------------------------------------------- /src/doc/figures/bottomhat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/bottomhat.jpg -------------------------------------------------------------------------------- /src/doc/figures/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/box.png -------------------------------------------------------------------------------- /src/doc/figures/checker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/checker.jpg -------------------------------------------------------------------------------- /src/doc/figures/colormap-custom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/colormap-custom.jpg -------------------------------------------------------------------------------- /src/doc/figures/colormap-turbo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/colormap-turbo.jpg -------------------------------------------------------------------------------- /src/doc/figures/crop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/crop.jpg -------------------------------------------------------------------------------- /src/doc/figures/cshift.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/cshift.jpg -------------------------------------------------------------------------------- /src/doc/figures/cut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/cut.jpg -------------------------------------------------------------------------------- /src/doc/figures/dilate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/dilate.jpg -------------------------------------------------------------------------------- /src/doc/figures/erode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/erode.jpg -------------------------------------------------------------------------------- /src/doc/figures/fill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fill.jpg -------------------------------------------------------------------------------- /src/doc/figures/fit-height.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fit-height.jpg -------------------------------------------------------------------------------- /src/doc/figures/fit-letterbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fit-letterbox.jpg -------------------------------------------------------------------------------- /src/doc/figures/fit-width.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fit-width.jpg -------------------------------------------------------------------------------- /src/doc/figures/fitv-height.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fitv-height.jpg -------------------------------------------------------------------------------- /src/doc/figures/fitv-letterbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fitv-letterbox.jpg -------------------------------------------------------------------------------- /src/doc/figures/fitv-width.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/fitv-width.jpg -------------------------------------------------------------------------------- /src/doc/figures/flip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/flip.jpg -------------------------------------------------------------------------------- /src/doc/figures/flipflop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/flipflop.jpg -------------------------------------------------------------------------------- /src/doc/figures/flop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/flop.jpg -------------------------------------------------------------------------------- /src/doc/figures/gaussnoise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/gaussnoise.jpg -------------------------------------------------------------------------------- /src/doc/figures/gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/gradient.jpg -------------------------------------------------------------------------------- /src/doc/figures/gradient4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/gradient4.jpg -------------------------------------------------------------------------------- /src/doc/figures/gradienth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/gradienth.jpg -------------------------------------------------------------------------------- /src/doc/figures/grid-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/grid-small.jpg -------------------------------------------------------------------------------- /src/doc/figures/invert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/invert.jpg -------------------------------------------------------------------------------- /src/doc/figures/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/lines.png -------------------------------------------------------------------------------- /src/doc/figures/luma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/luma.jpg -------------------------------------------------------------------------------- /src/doc/figures/morphclose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/morphclose.jpg -------------------------------------------------------------------------------- /src/doc/figures/morphgradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/morphgradient.jpg -------------------------------------------------------------------------------- /src/doc/figures/morphopen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/morphopen.jpg -------------------------------------------------------------------------------- /src/doc/figures/morphsource.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/morphsource.jpg -------------------------------------------------------------------------------- /src/doc/figures/mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/mosaic.jpg -------------------------------------------------------------------------------- /src/doc/figures/mulc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/mulc.jpg -------------------------------------------------------------------------------- /src/doc/figures/points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/points.png -------------------------------------------------------------------------------- /src/doc/figures/pretrim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/pretrim.jpg -------------------------------------------------------------------------------- /src/doc/figures/rotate180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/rotate180.jpg -------------------------------------------------------------------------------- /src/doc/figures/rotate270.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/rotate270.jpg -------------------------------------------------------------------------------- /src/doc/figures/rotate45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/rotate45.jpg -------------------------------------------------------------------------------- /src/doc/figures/rotate90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/rotate90.jpg -------------------------------------------------------------------------------- /src/doc/figures/scale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/scale.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-blur.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-ccmatrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-ccmatrix.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-gauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-gauss.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-inverse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-inverse.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-laplacian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-laplacian.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-pepper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-pepper.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-sat0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-sat0.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-sat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-sat2.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-sigmoid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-sigmoid.jpg -------------------------------------------------------------------------------- /src/doc/figures/tahoe-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tahoe-small.jpg -------------------------------------------------------------------------------- /src/doc/figures/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/text.jpg -------------------------------------------------------------------------------- /src/doc/figures/textcentered.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/textcentered.jpg -------------------------------------------------------------------------------- /src/doc/figures/textshadowed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/textshadowed.jpg -------------------------------------------------------------------------------- /src/doc/figures/tophat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/tophat.jpg -------------------------------------------------------------------------------- /src/doc/figures/transpose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/transpose.jpg -------------------------------------------------------------------------------- /src/doc/figures/trim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/trim.jpg -------------------------------------------------------------------------------- /src/doc/figures/unifnoise1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/unifnoise1.jpg -------------------------------------------------------------------------------- /src/doc/figures/unifnoise3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/figures/unifnoise3.jpg -------------------------------------------------------------------------------- /src/doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/glossary.rst -------------------------------------------------------------------------------- /src/doc/help2man_preformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/help2man_preformat.py -------------------------------------------------------------------------------- /src/doc/iconvert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/iconvert.rst -------------------------------------------------------------------------------- /src/doc/idiff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/idiff.rst -------------------------------------------------------------------------------- /src/doc/igrep.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/igrep.rst -------------------------------------------------------------------------------- /src/doc/iinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/iinfo.rst -------------------------------------------------------------------------------- /src/doc/imagebuf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imagebuf.rst -------------------------------------------------------------------------------- /src/doc/imagebufalgo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imagebufalgo.rst -------------------------------------------------------------------------------- /src/doc/imagecache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imagecache.rst -------------------------------------------------------------------------------- /src/doc/imageinput.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imageinput.rst -------------------------------------------------------------------------------- /src/doc/imageioapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imageioapi.rst -------------------------------------------------------------------------------- /src/doc/imageoutput.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/imageoutput.rst -------------------------------------------------------------------------------- /src/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/index.rst -------------------------------------------------------------------------------- /src/doc/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/mainpage.h -------------------------------------------------------------------------------- /src/doc/makefigures.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/makefigures.bash -------------------------------------------------------------------------------- /src/doc/maketx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/maketx.rst -------------------------------------------------------------------------------- /src/doc/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/notes.txt -------------------------------------------------------------------------------- /src/doc/oiiointro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/oiiointro.rst -------------------------------------------------------------------------------- /src/doc/oiiotool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/oiiotool.rst -------------------------------------------------------------------------------- /src/doc/pythonbindings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/pythonbindings.rst -------------------------------------------------------------------------------- /src/doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/requirements.txt -------------------------------------------------------------------------------- /src/doc/stdmetadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/stdmetadata.rst -------------------------------------------------------------------------------- /src/doc/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/templates/layout.html -------------------------------------------------------------------------------- /src/doc/texturesys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/texturesys.rst -------------------------------------------------------------------------------- /src/doc/writingplugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/doc/writingplugins.rst -------------------------------------------------------------------------------- /src/dpx.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/dpx.imageio/dpxinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/dpxinput.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/dpxoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/dpxoutput.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/Codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/Codec.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/Codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/Codec.h -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/DPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/DPX.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/DPX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/DPX.h -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/DPXHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/DPXHeader.h -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/DPXStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/DPXStream.h -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/EndianSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/EndianSwap.h -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/InStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/InStream.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/Reader.cpp -------------------------------------------------------------------------------- /src/dpx.imageio/libdpx/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/dpx.imageio/libdpx/Writer.cpp -------------------------------------------------------------------------------- /src/ffmpeg.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ffmpeg.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/ffmpeg.imageio/ffmpeginput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ffmpeg.imageio/ffmpeginput.cpp -------------------------------------------------------------------------------- /src/fits.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fits.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/fits.imageio/fits_pvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fits.imageio/fits_pvt.cpp -------------------------------------------------------------------------------- /src/fits.imageio/fits_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fits.imageio/fits_pvt.h -------------------------------------------------------------------------------- /src/fits.imageio/fitsinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fits.imageio/fitsinput.cpp -------------------------------------------------------------------------------- /src/fits.imageio/fitsoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fits.imageio/fitsoutput.cpp -------------------------------------------------------------------------------- /src/fonts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fonts/CMakeLists.txt -------------------------------------------------------------------------------- /src/fonts/Droid_Sans/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fonts/Droid_Sans/DroidSans.ttf -------------------------------------------------------------------------------- /src/fonts/Droid_Sans/droid-lic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fonts/Droid_Sans/droid-lic.txt -------------------------------------------------------------------------------- /src/fonts/Droid_Serif/droid-lic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/fonts/Droid_Serif/droid-lic.txt -------------------------------------------------------------------------------- /src/gif.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/gif.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/gif.imageio/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/gif.imageio/gif.h -------------------------------------------------------------------------------- /src/gif.imageio/gifinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/gif.imageio/gifinput.cpp -------------------------------------------------------------------------------- /src/gif.imageio/gifoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/gif.imageio/gifoutput.cpp -------------------------------------------------------------------------------- /src/hdr.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/hdr.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/hdr.imageio/hdrinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/hdr.imageio/hdrinput.cpp -------------------------------------------------------------------------------- /src/hdr.imageio/hdroutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/hdr.imageio/hdroutput.cpp -------------------------------------------------------------------------------- /src/heif.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/heif.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/heif.imageio/heifinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/heif.imageio/heifinput.cpp -------------------------------------------------------------------------------- /src/heif.imageio/heifoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/heif.imageio/heifoutput.cpp -------------------------------------------------------------------------------- /src/ico.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ico.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/ico.imageio/ico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ico.imageio/ico.h -------------------------------------------------------------------------------- /src/ico.imageio/icoinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ico.imageio/icoinput.cpp -------------------------------------------------------------------------------- /src/ico.imageio/icooutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ico.imageio/icooutput.cpp -------------------------------------------------------------------------------- /src/iconvert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iconvert/CMakeLists.txt -------------------------------------------------------------------------------- /src/iconvert/iconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iconvert/iconvert.cpp -------------------------------------------------------------------------------- /src/idiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/idiff/CMakeLists.txt -------------------------------------------------------------------------------- /src/idiff/idiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/idiff/idiff.cpp -------------------------------------------------------------------------------- /src/iff.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iff.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/iff.imageio/iff_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iff.imageio/iff_pvt.h -------------------------------------------------------------------------------- /src/iff.imageio/iffinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iff.imageio/iffinput.cpp -------------------------------------------------------------------------------- /src/iff.imageio/iffoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iff.imageio/iffoutput.cpp -------------------------------------------------------------------------------- /src/igrep/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/igrep/CMakeLists.txt -------------------------------------------------------------------------------- /src/igrep/igrep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/igrep/igrep.cpp -------------------------------------------------------------------------------- /src/iinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iinfo/CMakeLists.txt -------------------------------------------------------------------------------- /src/iinfo/iinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iinfo/iinfo.cpp -------------------------------------------------------------------------------- /src/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/OpenImageIO/Imath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/Imath.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/argparse.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/atomic.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/benchmark.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/bit.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/color.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/dassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/dassert.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/deepdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/deepdata.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/export.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/filter.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/fmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/fmath.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/half.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/hash.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/imagebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/imagebuf.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/imageio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/imageio.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/memory.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/optparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/optparser.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/parallel.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/paramlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/paramlist.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/platform.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/plugin.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/refcnt.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/simd.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/span.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/span_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/span_util.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/strutil.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/sysutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/sysutil.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/texture.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/thread.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/tiffutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/tiffutils.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/timer.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/typedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/typedesc.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/unittest.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/ustring.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/vecparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/vecparam.h -------------------------------------------------------------------------------- /src/include/OpenImageIO/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/OpenImageIO/version.h -------------------------------------------------------------------------------- /src/include/imageio_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/include/imageio_pvt.h -------------------------------------------------------------------------------- /src/iv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/CMakeLists.txt -------------------------------------------------------------------------------- /src/iv/imageviewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/imageviewer.cpp -------------------------------------------------------------------------------- /src/iv/imageviewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/imageviewer.h -------------------------------------------------------------------------------- /src/iv/ivgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivgl.cpp -------------------------------------------------------------------------------- /src/iv/ivgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivgl.h -------------------------------------------------------------------------------- /src/iv/ivgl_ocio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivgl_ocio.cpp -------------------------------------------------------------------------------- /src/iv/ivgl_ocio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivgl_ocio.h -------------------------------------------------------------------------------- /src/iv/ivimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivimage.cpp -------------------------------------------------------------------------------- /src/iv/ivinfowin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivinfowin.cpp -------------------------------------------------------------------------------- /src/iv/ivmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivmain.cpp -------------------------------------------------------------------------------- /src/iv/ivpref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivpref.cpp -------------------------------------------------------------------------------- /src/iv/ivutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/iv/ivutils.h -------------------------------------------------------------------------------- /src/jpeg.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpeg.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/jpeg.imageio/jpeg_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpeg.imageio/jpeg_pvt.h -------------------------------------------------------------------------------- /src/jpeg.imageio/jpeginput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpeg.imageio/jpeginput.cpp -------------------------------------------------------------------------------- /src/jpeg.imageio/jpegoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpeg.imageio/jpegoutput.cpp -------------------------------------------------------------------------------- /src/jpeg2000.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpeg2000.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/jpegxl.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpegxl.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/jpegxl.imageio/jxlinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpegxl.imageio/jxlinput.cpp -------------------------------------------------------------------------------- /src/jpegxl.imageio/jxloutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/jpegxl.imageio/jxloutput.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/CMakeLists.txt -------------------------------------------------------------------------------- /src/libOpenImageIO/bluenoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/bluenoise.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/bluenoise.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/bluenoise.inc -------------------------------------------------------------------------------- /src/libOpenImageIO/buildopts.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/buildopts.h.in -------------------------------------------------------------------------------- /src/libOpenImageIO/color_ocio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/color_ocio.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/color_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/color_test.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/compute_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/compute_test.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/deepdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/deepdata.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/exif-canon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/exif-canon.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/exif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/exif.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/exif.h -------------------------------------------------------------------------------- /src/libOpenImageIO/formatspec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/formatspec.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/icc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/icc.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/imagebuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/imagebuf.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/imagebufalgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/imagebufalgo.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/imageinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/imageinput.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/imageio.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/imageoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/imageoutput.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/iptc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/iptc.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/kissfft.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/kissfft.hh -------------------------------------------------------------------------------- /src/libOpenImageIO/maketexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/maketexture.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/oiio_gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/oiio_gpu.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/printinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/printinfo.cpp -------------------------------------------------------------------------------- /src/libOpenImageIO/xmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libOpenImageIO/xmp.cpp -------------------------------------------------------------------------------- /src/libtexture/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/environment.cpp -------------------------------------------------------------------------------- /src/libtexture/imagecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/imagecache.cpp -------------------------------------------------------------------------------- /src/libtexture/imagecache_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/imagecache_pvt.h -------------------------------------------------------------------------------- /src/libtexture/texoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/texoptions.cpp -------------------------------------------------------------------------------- /src/libtexture/texture3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/texture3d.cpp -------------------------------------------------------------------------------- /src/libtexture/texture_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/texture_pvt.h -------------------------------------------------------------------------------- /src/libtexture/texturesys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libtexture/texturesys.cpp -------------------------------------------------------------------------------- /src/libutil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/CMakeLists.txt -------------------------------------------------------------------------------- /src/libutil/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/SHA1.cpp -------------------------------------------------------------------------------- /src/libutil/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/SHA1.h -------------------------------------------------------------------------------- /src/libutil/argparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/argparse.cpp -------------------------------------------------------------------------------- /src/libutil/argparse_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/argparse_test.cpp -------------------------------------------------------------------------------- /src/libutil/atomic_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/atomic_test.cpp -------------------------------------------------------------------------------- /src/libutil/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/benchmark.cpp -------------------------------------------------------------------------------- /src/libutil/errorhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/errorhandler.cpp -------------------------------------------------------------------------------- /src/libutil/farmhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/farmhash.cpp -------------------------------------------------------------------------------- /src/libutil/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/filesystem.cpp -------------------------------------------------------------------------------- /src/libutil/filesystem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/filesystem_test.cpp -------------------------------------------------------------------------------- /src/libutil/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/filter.cpp -------------------------------------------------------------------------------- /src/libutil/filter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/filter_test.cpp -------------------------------------------------------------------------------- /src/libutil/fmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/fmath.cpp -------------------------------------------------------------------------------- /src/libutil/fmath_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/fmath_test.cpp -------------------------------------------------------------------------------- /src/libutil/hash_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/hash_test.cpp -------------------------------------------------------------------------------- /src/libutil/hashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/hashes.cpp -------------------------------------------------------------------------------- /src/libutil/optparser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/optparser_test.cpp -------------------------------------------------------------------------------- /src/libutil/parallel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/parallel_test.cpp -------------------------------------------------------------------------------- /src/libutil/paramlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/paramlist.cpp -------------------------------------------------------------------------------- /src/libutil/paramlist_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/paramlist_test.cpp -------------------------------------------------------------------------------- /src/libutil/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/plugin.cpp -------------------------------------------------------------------------------- /src/libutil/simd_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/simd_test.cpp -------------------------------------------------------------------------------- /src/libutil/span_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/span_test.cpp -------------------------------------------------------------------------------- /src/libutil/spin_rw_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/spin_rw_test.cpp -------------------------------------------------------------------------------- /src/libutil/spinlock_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/spinlock_test.cpp -------------------------------------------------------------------------------- /src/libutil/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/stb_sprintf.h -------------------------------------------------------------------------------- /src/libutil/strongparam_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/strongparam_test.cpp -------------------------------------------------------------------------------- /src/libutil/strutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/strutil.cpp -------------------------------------------------------------------------------- /src/libutil/strutil_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/strutil_test.cpp -------------------------------------------------------------------------------- /src/libutil/sysutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/sysutil.cpp -------------------------------------------------------------------------------- /src/libutil/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/thread.cpp -------------------------------------------------------------------------------- /src/libutil/thread_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/thread_test.cpp -------------------------------------------------------------------------------- /src/libutil/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/timer.cpp -------------------------------------------------------------------------------- /src/libutil/timer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/timer_test.cpp -------------------------------------------------------------------------------- /src/libutil/type_traits_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/type_traits_test.cpp -------------------------------------------------------------------------------- /src/libutil/typedesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/typedesc.cpp -------------------------------------------------------------------------------- /src/libutil/typedesc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/typedesc_test.cpp -------------------------------------------------------------------------------- /src/libutil/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/ustring.cpp -------------------------------------------------------------------------------- /src/libutil/ustring_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/ustring_test.cpp -------------------------------------------------------------------------------- /src/libutil/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/libutil/xxhash.cpp -------------------------------------------------------------------------------- /src/maketx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/maketx/CMakeLists.txt -------------------------------------------------------------------------------- /src/maketx/maketx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/maketx/maketx.cpp -------------------------------------------------------------------------------- /src/nuke/txReader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/nuke/txReader/CMakeLists.txt -------------------------------------------------------------------------------- /src/nuke/txReader/txReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/nuke/txReader/txReader.cpp -------------------------------------------------------------------------------- /src/nuke/txWriter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/nuke/txWriter/CMakeLists.txt -------------------------------------------------------------------------------- /src/nuke/txWriter/txWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/nuke/txWriter/txWriter.cpp -------------------------------------------------------------------------------- /src/null.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/null.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/null.imageio/nullimageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/null.imageio/nullimageio.cpp -------------------------------------------------------------------------------- /src/oiiotool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/CMakeLists.txt -------------------------------------------------------------------------------- /src/oiiotool/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/diff.cpp -------------------------------------------------------------------------------- /src/oiiotool/expressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/expressions.cpp -------------------------------------------------------------------------------- /src/oiiotool/imagerec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/imagerec.cpp -------------------------------------------------------------------------------- /src/oiiotool/oiiotool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/oiiotool.cpp -------------------------------------------------------------------------------- /src/oiiotool/oiiotool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/oiiotool.h -------------------------------------------------------------------------------- /src/oiiotool/printinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/oiiotool/printinfo.cpp -------------------------------------------------------------------------------- /src/openexr.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openexr.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/openexr.imageio/exr_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openexr.imageio/exr_pvt.h -------------------------------------------------------------------------------- /src/openexr.imageio/exrinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openexr.imageio/exrinput.cpp -------------------------------------------------------------------------------- /src/openexr.imageio/exrinput_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openexr.imageio/exrinput_c.cpp -------------------------------------------------------------------------------- /src/openexr.imageio/exroutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openexr.imageio/exroutput.cpp -------------------------------------------------------------------------------- /src/openvdb.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/openvdb.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/png.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/png.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/png.imageio/png_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/png.imageio/png_pvt.h -------------------------------------------------------------------------------- /src/png.imageio/pnginput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/png.imageio/pnginput.cpp -------------------------------------------------------------------------------- /src/png.imageio/pngoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/png.imageio/pngoutput.cpp -------------------------------------------------------------------------------- /src/pnm.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/pnm.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/pnm.imageio/pnminput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/pnm.imageio/pnminput.cpp -------------------------------------------------------------------------------- /src/pnm.imageio/pnmoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/pnm.imageio/pnmoutput.cpp -------------------------------------------------------------------------------- /src/psd.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/psd.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/psd.imageio/psd_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/psd.imageio/psd_pvt.h -------------------------------------------------------------------------------- /src/psd.imageio/psdinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/psd.imageio/psdinput.cpp -------------------------------------------------------------------------------- /src/ptex.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ptex.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/ptex.imageio/ptexinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/ptex.imageio/ptexinput.cpp -------------------------------------------------------------------------------- /src/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/__init__.py -------------------------------------------------------------------------------- /src/python/py_colorconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_colorconfig.cpp -------------------------------------------------------------------------------- /src/python/py_deepdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_deepdata.cpp -------------------------------------------------------------------------------- /src/python/py_imagebuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imagebuf.cpp -------------------------------------------------------------------------------- /src/python/py_imagebufalgo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imagebufalgo.cpp -------------------------------------------------------------------------------- /src/python/py_imagecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imagecache.cpp -------------------------------------------------------------------------------- /src/python/py_imageinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imageinput.cpp -------------------------------------------------------------------------------- /src/python/py_imageoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imageoutput.cpp -------------------------------------------------------------------------------- /src/python/py_imagespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_imagespec.cpp -------------------------------------------------------------------------------- /src/python/py_oiio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_oiio.cpp -------------------------------------------------------------------------------- /src/python/py_oiio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_oiio.h -------------------------------------------------------------------------------- /src/python/py_paramvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_paramvalue.cpp -------------------------------------------------------------------------------- /src/python/py_roi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_roi.cpp -------------------------------------------------------------------------------- /src/python/py_texturesys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_texturesys.cpp -------------------------------------------------------------------------------- /src/python/py_typedesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/py_typedesc.cpp -------------------------------------------------------------------------------- /src/python/python_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/python_tests -------------------------------------------------------------------------------- /src/python/stubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/stubs/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/stubs/OpenImageIO/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/stubs/generate_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/python/stubs/generate_stubs.py -------------------------------------------------------------------------------- /src/r3d.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/r3d.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/r3d.imageio/r3dinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/r3d.imageio/r3dinput.cpp -------------------------------------------------------------------------------- /src/raw.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/raw.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/raw.imageio/rawinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/raw.imageio/rawinput.cpp -------------------------------------------------------------------------------- /src/rla.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/rla.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/rla.imageio/rla_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/rla.imageio/rla_pvt.h -------------------------------------------------------------------------------- /src/rla.imageio/rlainput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/rla.imageio/rlainput.cpp -------------------------------------------------------------------------------- /src/rla.imageio/rlaoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/rla.imageio/rlaoutput.cpp -------------------------------------------------------------------------------- /src/sgi.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/sgi.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/sgi.imageio/sgi_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/sgi.imageio/sgi_pvt.h -------------------------------------------------------------------------------- /src/sgi.imageio/sgiinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/sgi.imageio/sgiinput.cpp -------------------------------------------------------------------------------- /src/sgi.imageio/sgioutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/sgi.imageio/sgioutput.cpp -------------------------------------------------------------------------------- /src/targa.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/targa.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/targa.imageio/targa_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/targa.imageio/targa_pvt.h -------------------------------------------------------------------------------- /src/targa.imageio/targainput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/targa.imageio/targainput.cpp -------------------------------------------------------------------------------- /src/targa.imageio/targaoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/targa.imageio/targaoutput.cpp -------------------------------------------------------------------------------- /src/term.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/term.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/term.imageio/termoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/term.imageio/termoutput.cpp -------------------------------------------------------------------------------- /src/testtex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/testtex/CMakeLists.txt -------------------------------------------------------------------------------- /src/testtex/testtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/testtex/testtex.cpp -------------------------------------------------------------------------------- /src/tiff.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/tiff.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/tiff.imageio/tiffinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/tiff.imageio/tiffinput.cpp -------------------------------------------------------------------------------- /src/tiff.imageio/tiffoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/tiff.imageio/tiffoutput.cpp -------------------------------------------------------------------------------- /src/webp.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/webp.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/webp.imageio/webpinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/webp.imageio/webpinput.cpp -------------------------------------------------------------------------------- /src/webp.imageio/webpoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/webp.imageio/webpoutput.cpp -------------------------------------------------------------------------------- /src/zfile.imageio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/zfile.imageio/CMakeLists.txt -------------------------------------------------------------------------------- /src/zfile.imageio/zfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/src/zfile.imageio/zfile.cpp -------------------------------------------------------------------------------- /testsuite/TESTSUITE-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/TESTSUITE-README.md -------------------------------------------------------------------------------- /testsuite/bmp/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/bmp/ref/out.txt -------------------------------------------------------------------------------- /testsuite/bmp/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/bmp/run.py -------------------------------------------------------------------------------- /testsuite/bmp/src/PRINTER.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/bmp/src/PRINTER.BMP -------------------------------------------------------------------------------- /testsuite/bmp/src/bad-y.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/bmp/src/bad-y.bmp -------------------------------------------------------------------------------- /testsuite/bmp/src/g01bg2-v5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/bmp/src/g01bg2-v5.bmp -------------------------------------------------------------------------------- /testsuite/cineon/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/cineon/ref/out.txt -------------------------------------------------------------------------------- /testsuite/cineon/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/cineon/run.py -------------------------------------------------------------------------------- /testsuite/cmake-consumer/ref/out.txt: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /testsuite/cmake-consumer/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/cmake-consumer/run.py -------------------------------------------------------------------------------- /testsuite/common/bayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/bayer.png -------------------------------------------------------------------------------- /testsuite/common/grid-small.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/grid-small.exr -------------------------------------------------------------------------------- /testsuite/common/grid.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/grid.tif -------------------------------------------------------------------------------- /testsuite/common/tahoe-small.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/tahoe-small.tif -------------------------------------------------------------------------------- /testsuite/common/tahoe-tiny.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/tahoe-tiny.tif -------------------------------------------------------------------------------- /testsuite/common/textures/grid.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/textures/grid.tx -------------------------------------------------------------------------------- /testsuite/common/unpremult.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/unpremult.tif -------------------------------------------------------------------------------- /testsuite/common/with_nans.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/common/with_nans.tif -------------------------------------------------------------------------------- /testsuite/cryptomatte/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/cryptomatte/ref/out.txt -------------------------------------------------------------------------------- /testsuite/cryptomatte/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/cryptomatte/run.py -------------------------------------------------------------------------------- /testsuite/dds/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dds/ref/out.txt -------------------------------------------------------------------------------- /testsuite/dds/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dds/run.py -------------------------------------------------------------------------------- /testsuite/dds/src/crash-1634.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dds/src/crash-1634.dds -------------------------------------------------------------------------------- /testsuite/dds/src/crash-1635.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dds/src/crash-1635.dds -------------------------------------------------------------------------------- /testsuite/dds/src/crash-3950.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dds/src/crash-3950.dds -------------------------------------------------------------------------------- /testsuite/diff/ref/out-fmt6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/diff/ref/out-fmt6.txt -------------------------------------------------------------------------------- /testsuite/diff/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/diff/ref/out.txt -------------------------------------------------------------------------------- /testsuite/diff/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/diff/run.py -------------------------------------------------------------------------------- /testsuite/dither/ref/bad.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dither/ref/bad.tif -------------------------------------------------------------------------------- /testsuite/dither/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dither/ref/out.txt -------------------------------------------------------------------------------- /testsuite/dither/ref/ramp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dither/ref/ramp.tif -------------------------------------------------------------------------------- /testsuite/dither/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dither/run.py -------------------------------------------------------------------------------- /testsuite/docs-examples-cpp/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/docs-examples-cpp/run.py -------------------------------------------------------------------------------- /testsuite/dpx/ref/L.dpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/ref/L.dpx -------------------------------------------------------------------------------- /testsuite/dpx/ref/R.dpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/ref/R.dpx -------------------------------------------------------------------------------- /testsuite/dpx/ref/grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/ref/grey.tif -------------------------------------------------------------------------------- /testsuite/dpx/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/ref/out.txt -------------------------------------------------------------------------------- /testsuite/dpx/ref/stereo.dpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/ref/stereo.dpx -------------------------------------------------------------------------------- /testsuite/dpx/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dpx/run.py -------------------------------------------------------------------------------- /testsuite/dup-channels/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dup-channels/ref/out.txt -------------------------------------------------------------------------------- /testsuite/dup-channels/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/dup-channels/run.py -------------------------------------------------------------------------------- /testsuite/ffmpeg/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ffmpeg/run.py -------------------------------------------------------------------------------- /testsuite/filters/ref/box.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/box.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/bspline.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/bspline.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/cubic.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/cubic.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/disk.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/disk.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/gaussian.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/gaussian.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/keys.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/keys.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/lanczos3.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/lanczos3.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/mitchell.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/mitchell.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/out.txt -------------------------------------------------------------------------------- /testsuite/filters/ref/rifman.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/rifman.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/simon.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/simon.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/sinc.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/sinc.exr -------------------------------------------------------------------------------- /testsuite/filters/ref/triangle.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/ref/triangle.exr -------------------------------------------------------------------------------- /testsuite/filters/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/filters/run.py -------------------------------------------------------------------------------- /testsuite/fits/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/fits/ref/out.txt -------------------------------------------------------------------------------- /testsuite/fits/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/fits/run.py -------------------------------------------------------------------------------- /testsuite/gif/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gif/ref/out.txt -------------------------------------------------------------------------------- /testsuite/gif/ref/tahoe-tiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gif/ref/tahoe-tiny.gif -------------------------------------------------------------------------------- /testsuite/gif/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gif/run.py -------------------------------------------------------------------------------- /testsuite/gpsread/ref/out-alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gpsread/ref/out-alt.txt -------------------------------------------------------------------------------- /testsuite/gpsread/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gpsread/ref/out.txt -------------------------------------------------------------------------------- /testsuite/gpsread/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/gpsread/run.py -------------------------------------------------------------------------------- /testsuite/hdr/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/hdr/ref/out.txt -------------------------------------------------------------------------------- /testsuite/hdr/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/hdr/run.py -------------------------------------------------------------------------------- /testsuite/heif/ref/test-10bit.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/heif/ref/test-10bit.avif -------------------------------------------------------------------------------- /testsuite/heif/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/heif/run.py -------------------------------------------------------------------------------- /testsuite/htj2k/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/htj2k/ref/out.txt -------------------------------------------------------------------------------- /testsuite/htj2k/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/htj2k/run.py -------------------------------------------------------------------------------- /testsuite/ico/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ico/ref/out.txt -------------------------------------------------------------------------------- /testsuite/ico/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ico/run.py -------------------------------------------------------------------------------- /testsuite/ico/src/bad1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ico/src/bad1.ico -------------------------------------------------------------------------------- /testsuite/iff/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iff/ref/out.txt -------------------------------------------------------------------------------- /testsuite/iff/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iff/run.py -------------------------------------------------------------------------------- /testsuite/igrep/ref/out.txt: -------------------------------------------------------------------------------- 1 | ../oiio-images/tahoe-gps.jpg: GPS:MapDatum = WGS-84 2 | -------------------------------------------------------------------------------- /testsuite/igrep/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/igrep/run.py -------------------------------------------------------------------------------- /testsuite/iinfo/ref/out-fmt6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/ref/out-fmt6.txt -------------------------------------------------------------------------------- /testsuite/iinfo/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/ref/out.txt -------------------------------------------------------------------------------- /testsuite/iinfo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/run.py -------------------------------------------------------------------------------- /testsuite/iinfo/src/mip.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/src/mip.tif -------------------------------------------------------------------------------- /testsuite/iinfo/src/subimage.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/src/subimage.tif -------------------------------------------------------------------------------- /testsuite/iinfo/src/tiny-az.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/src/tiny-az.exr -------------------------------------------------------------------------------- /testsuite/iinfo/src/tinydeep.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/iinfo/src/tinydeep.exr -------------------------------------------------------------------------------- /testsuite/jpeg-corrupt/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-corrupt/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jpeg-corrupt/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-corrupt/run.py -------------------------------------------------------------------------------- /testsuite/jpeg-metadata/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-metadata/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jpeg-metadata/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-metadata/run.py -------------------------------------------------------------------------------- /testsuite/jpeg-ultrahdr/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-ultrahdr/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jpeg-ultrahdr/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg-ultrahdr/run.py -------------------------------------------------------------------------------- /testsuite/jpeg/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jpeg/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg/run.py -------------------------------------------------------------------------------- /testsuite/jpeg/src/YCbCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg/src/YCbCrK.jpg -------------------------------------------------------------------------------- /testsuite/jpeg2000/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg2000/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jpeg2000/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jpeg2000/run.py -------------------------------------------------------------------------------- /testsuite/jxl/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jxl/ref/out.txt -------------------------------------------------------------------------------- /testsuite/jxl/ref/test-jxl.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jxl/ref/test-jxl.icc -------------------------------------------------------------------------------- /testsuite/jxl/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/jxl/run.py -------------------------------------------------------------------------------- /testsuite/maketx/ref/bumpslope.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/ref/bumpslope.exr -------------------------------------------------------------------------------- /testsuite/maketx/ref/out-alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/ref/out-alt.txt -------------------------------------------------------------------------------- /testsuite/maketx/ref/out-macarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/ref/out-macarm.txt -------------------------------------------------------------------------------- /testsuite/maketx/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/ref/out.txt -------------------------------------------------------------------------------- /testsuite/maketx/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/run.py -------------------------------------------------------------------------------- /testsuite/maketx/src/bump.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/src/bump.exr -------------------------------------------------------------------------------- /testsuite/maketx/src/normal.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/maketx/src/normal.exr -------------------------------------------------------------------------------- /testsuite/misnamed-file/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/misnamed-file/ref/out.txt -------------------------------------------------------------------------------- /testsuite/misnamed-file/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/misnamed-file/run.py -------------------------------------------------------------------------------- /testsuite/missingcolor/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/missingcolor/ref/out.txt -------------------------------------------------------------------------------- /testsuite/missingcolor/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/missingcolor/run.py -------------------------------------------------------------------------------- /testsuite/nonwhole-tiles/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/nonwhole-tiles/run.py -------------------------------------------------------------------------------- /testsuite/null/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/null/ref/out.txt -------------------------------------------------------------------------------- /testsuite/null/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/null/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-attribs/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-attribs/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-attribs/src/regex_list.txt: -------------------------------------------------------------------------------- 1 | Make 2 | GPS:.* -------------------------------------------------------------------------------- /testsuite/oiiotool-color/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-color/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-composite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-composite/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-control/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-control/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-copy/ref/cut.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-copy/ref/cut.tif -------------------------------------------------------------------------------- /testsuite/oiiotool-copy/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-copy/ref/out.txt -------------------------------------------------------------------------------- /testsuite/oiiotool-copy/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-copy/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-deep/ref/ch.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-deep/ref/ch.exr -------------------------------------------------------------------------------- /testsuite/oiiotool-deep/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-deep/ref/out.txt -------------------------------------------------------------------------------- /testsuite/oiiotool-deep/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-deep/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-deep/src/az.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-deep/src/az.exr -------------------------------------------------------------------------------- /testsuite/oiiotool-demosaic/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-demosaic/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-fixnan/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-fixnan/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-layers/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-layers/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-maketx/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-maketx/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-pattern/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-pattern/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-readerror/TRAVIS_SKIP_LSAN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/oiiotool-readerror/ref/out.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/oiiotool-readerror/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-readerror/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-spi/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-spi/ref/out.txt -------------------------------------------------------------------------------- /testsuite/oiiotool-spi/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-spi/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-subimage/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-subimage/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-text/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-text/ref/out.txt -------------------------------------------------------------------------------- /testsuite/oiiotool-text/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-text/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool-xform/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool-xform/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/abs.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/abs.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/absdiff.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/absdiff.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/absdiffc.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/absdiffc.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/add.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/add.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/allhalf.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/allhalf.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/autotrim.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/autotrim.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cadd1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cadd1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cadd2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cadd2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/chsum.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/chsum.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmax1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmax1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmax2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmax2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmin1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmin1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmin2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmin2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmul1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmul1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cmul2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cmul2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cpow1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cpow1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/cpow2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/cpow2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/dilate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/dilate.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/div.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/div.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/divc1.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/divc1.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/divc2.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/divc2.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/erode.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/erode.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/fft.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/fft.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/filled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/filled.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/hole.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/hole.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/ifft.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/ifft.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/invert.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/invert.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/labeladd.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/labeladd.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/mad.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/mad.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/max.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/max.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/maxchan.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/maxchan.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/min.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/min.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/minchan.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/minchan.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/mul.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/mul.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/out.txt -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/polar.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/polar.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/sub.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/sub.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/subc.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/subc.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/trim.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/trim.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/unpolar.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/unpolar.exr -------------------------------------------------------------------------------- /testsuite/oiiotool/ref/unsharp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/ref/unsharp.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/run.py -------------------------------------------------------------------------------- /testsuite/oiiotool/src/image.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/src/image.tif -------------------------------------------------------------------------------- /testsuite/oiiotool/src/norm.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/oiiotool/src/norm.exr -------------------------------------------------------------------------------- /testsuite/openexr-chroma/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-chroma/run.py -------------------------------------------------------------------------------- /testsuite/openexr-copy/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-copy/ref/out.txt -------------------------------------------------------------------------------- /testsuite/openexr-copy/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-copy/run.py -------------------------------------------------------------------------------- /testsuite/openexr-damaged/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-damaged/run.py -------------------------------------------------------------------------------- /testsuite/openexr-idmanifest/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-idmanifest/run.py -------------------------------------------------------------------------------- /testsuite/openexr-multires/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-multires/run.py -------------------------------------------------------------------------------- /testsuite/openexr-suite/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-suite/ref/out.txt -------------------------------------------------------------------------------- /testsuite/openexr-suite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-suite/run.py -------------------------------------------------------------------------------- /testsuite/openexr-v2/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-v2/ref/out.txt -------------------------------------------------------------------------------- /testsuite/openexr-v2/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-v2/run.py -------------------------------------------------------------------------------- /testsuite/openexr-window/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openexr-window/run.py -------------------------------------------------------------------------------- /testsuite/openvdb/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/ref/out.txt -------------------------------------------------------------------------------- /testsuite/openvdb/ref/sphere.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/ref/sphere.exr -------------------------------------------------------------------------------- /testsuite/openvdb/ref/sphereCd.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/ref/sphereCd.exr -------------------------------------------------------------------------------- /testsuite/openvdb/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/run.py -------------------------------------------------------------------------------- /testsuite/openvdb/src/sphere.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/src/sphere.vdb -------------------------------------------------------------------------------- /testsuite/openvdb/src/sphereCd.vdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/openvdb/src/sphereCd.vdb -------------------------------------------------------------------------------- /testsuite/perchannel/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/perchannel/ref/out.txt -------------------------------------------------------------------------------- /testsuite/perchannel/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/perchannel/run.py -------------------------------------------------------------------------------- /testsuite/png-damaged/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png-damaged/ref/out.txt -------------------------------------------------------------------------------- /testsuite/png-damaged/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png-damaged/run.py -------------------------------------------------------------------------------- /testsuite/png/ref/out-libpng15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/ref/out-libpng15.txt -------------------------------------------------------------------------------- /testsuite/png/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/ref/out.txt -------------------------------------------------------------------------------- /testsuite/png/ref/test16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/ref/test16.png -------------------------------------------------------------------------------- /testsuite/png/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/run.py -------------------------------------------------------------------------------- /testsuite/png/src/alphagamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/src/alphagamma.png -------------------------------------------------------------------------------- /testsuite/png/src/gimp_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/png/src/gimp_gradient.png -------------------------------------------------------------------------------- /testsuite/pnm/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/ref/out.txt -------------------------------------------------------------------------------- /testsuite/pnm/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/run.py -------------------------------------------------------------------------------- /testsuite/pnm/src/bad-4552.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/bad-4552.pgm -------------------------------------------------------------------------------- /testsuite/pnm/src/bad-4553.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/bad-4553.pgm -------------------------------------------------------------------------------- /testsuite/pnm/src/bw-ascii.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/bw-ascii.pbm -------------------------------------------------------------------------------- /testsuite/pnm/src/bw-binary.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/bw-binary.pbm -------------------------------------------------------------------------------- /testsuite/pnm/src/grey-ascii.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/grey-ascii.pgm -------------------------------------------------------------------------------- /testsuite/pnm/src/grey-binary.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/grey-binary.pgm -------------------------------------------------------------------------------- /testsuite/pnm/src/rgb-ascii.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/rgb-ascii.ppm -------------------------------------------------------------------------------- /testsuite/pnm/src/rgb-binary.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/pnm/src/rgb-binary.ppm -------------------------------------------------------------------------------- /testsuite/psd-colormodes/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/psd-colormodes/run.py -------------------------------------------------------------------------------- /testsuite/psd/ref/out-linuxarm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/psd/ref/out-linuxarm.txt -------------------------------------------------------------------------------- /testsuite/psd/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/psd/ref/out.txt -------------------------------------------------------------------------------- /testsuite/psd/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/psd/run.py -------------------------------------------------------------------------------- /testsuite/psd/src/layer-mask.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/psd/src/layer-mask.psd -------------------------------------------------------------------------------- /testsuite/ptex/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ptex/ref/out.txt -------------------------------------------------------------------------------- /testsuite/ptex/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ptex/run.py -------------------------------------------------------------------------------- /testsuite/ptex/src/triangle.ptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/ptex/src/triangle.ptx -------------------------------------------------------------------------------- /testsuite/python-colorconfig/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-colorconfig/run.py -------------------------------------------------------------------------------- /testsuite/python-deep/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-deep/ref/out.txt -------------------------------------------------------------------------------- /testsuite/python-deep/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-deep/run.py -------------------------------------------------------------------------------- /testsuite/python-imagebuf/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-imagebuf/run.py -------------------------------------------------------------------------------- /testsuite/python-imagecache/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-imagecache/run.py -------------------------------------------------------------------------------- /testsuite/python-imageinput/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-imageinput/run.py -------------------------------------------------------------------------------- /testsuite/python-imageoutput/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-imageoutput/run.py -------------------------------------------------------------------------------- /testsuite/python-imagespec/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-imagespec/run.py -------------------------------------------------------------------------------- /testsuite/python-paramlist/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-paramlist/run.py -------------------------------------------------------------------------------- /testsuite/python-roi/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-roi/ref/out.txt -------------------------------------------------------------------------------- /testsuite/python-roi/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-roi/run.py -------------------------------------------------------------------------------- /testsuite/python-texturesys/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-texturesys/run.py -------------------------------------------------------------------------------- /testsuite/python-typedesc/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/python-typedesc/run.py -------------------------------------------------------------------------------- /testsuite/rational/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rational/ref/out.txt -------------------------------------------------------------------------------- /testsuite/rational/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rational/run.py -------------------------------------------------------------------------------- /testsuite/rational/src/test.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rational/src/test.exr -------------------------------------------------------------------------------- /testsuite/raw/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/raw/ref/out.txt -------------------------------------------------------------------------------- /testsuite/raw/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/raw/run.py -------------------------------------------------------------------------------- /testsuite/rla/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/ref/out.txt -------------------------------------------------------------------------------- /testsuite/rla/ref/rlacrop.rla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/ref/rlacrop.rla -------------------------------------------------------------------------------- /testsuite/rla/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/run.py -------------------------------------------------------------------------------- /testsuite/rla/src/crash-1.rla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/src/crash-1.rla -------------------------------------------------------------------------------- /testsuite/rla/src/crash-1629.rla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/src/crash-1629.rla -------------------------------------------------------------------------------- /testsuite/rla/src/crash-3951.rla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/rla/src/crash-3951.rla -------------------------------------------------------------------------------- /testsuite/runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/runtest.py -------------------------------------------------------------------------------- /testsuite/sgi/ref/norle-16.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/ref/norle-16.sgi -------------------------------------------------------------------------------- /testsuite/sgi/ref/norle-8.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/ref/norle-8.sgi -------------------------------------------------------------------------------- /testsuite/sgi/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/ref/out.txt -------------------------------------------------------------------------------- /testsuite/sgi/ref/rle-16.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/ref/rle-16.sgi -------------------------------------------------------------------------------- /testsuite/sgi/ref/rle-8.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/ref/rle-8.sgi -------------------------------------------------------------------------------- /testsuite/sgi/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/sgi/run.py -------------------------------------------------------------------------------- /testsuite/softimage/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/softimage/ref/out.txt -------------------------------------------------------------------------------- /testsuite/softimage/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/softimage/run.py -------------------------------------------------------------------------------- /testsuite/targa-thumbnail/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa-thumbnail/run.py -------------------------------------------------------------------------------- /testsuite/targa/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/ref/out.txt -------------------------------------------------------------------------------- /testsuite/targa/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/run.py -------------------------------------------------------------------------------- /testsuite/targa/src/1x1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/1x1.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash1.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash1707.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash1707.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash1708.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash1708.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash2.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash3.tga: -------------------------------------------------------------------------------- 1 | c``4@ p& -------------------------------------------------------------------------------- /testsuite/targa/src/crash3952.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash3952.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash4.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash5.tga -------------------------------------------------------------------------------- /testsuite/targa/src/crash6.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/targa/src/crash6.tga -------------------------------------------------------------------------------- /testsuite/term/ref/24bit-space.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/24bit-space.out -------------------------------------------------------------------------------- /testsuite/term/ref/24bit.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/24bit.out -------------------------------------------------------------------------------- /testsuite/term/ref/dither-alt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/dither-alt.out -------------------------------------------------------------------------------- /testsuite/term/ref/dither.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/dither.out -------------------------------------------------------------------------------- /testsuite/term/ref/iterm2-alt.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/iterm2-alt.out -------------------------------------------------------------------------------- /testsuite/term/ref/iterm2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/iterm2.out -------------------------------------------------------------------------------- /testsuite/term/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/ref/out.txt -------------------------------------------------------------------------------- /testsuite/term/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/term/run.py -------------------------------------------------------------------------------- /testsuite/texture-blurtube/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-blurtube/run.py -------------------------------------------------------------------------------- /testsuite/texture-colorspace/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-colorspace/run.py -------------------------------------------------------------------------------- /testsuite/texture-crop/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-crop/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-crop/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-crop/run.py -------------------------------------------------------------------------------- /testsuite/texture-cropover/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-cropover/run.py -------------------------------------------------------------------------------- /testsuite/texture-derivs/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-derivs/run.py -------------------------------------------------------------------------------- /testsuite/texture-env/ref/5chan.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-env/ref/5chan.exr -------------------------------------------------------------------------------- /testsuite/texture-env/ref/env.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-env/ref/env.exr -------------------------------------------------------------------------------- /testsuite/texture-env/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-env/ref/out.txt -------------------------------------------------------------------------------- /testsuite/texture-env/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-env/run.py -------------------------------------------------------------------------------- /testsuite/texture-fat/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fat/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-fat/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fat/run.py -------------------------------------------------------------------------------- /testsuite/texture-fill/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fill/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-fill/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fill/ref/out.txt -------------------------------------------------------------------------------- /testsuite/texture-fill/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fill/run.py -------------------------------------------------------------------------------- /testsuite/texture-fill/src/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-fill/src/gray.png -------------------------------------------------------------------------------- /testsuite/texture-filtersize/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-filtersize/run.py -------------------------------------------------------------------------------- /testsuite/texture-flipt/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-flipt/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-flipt/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-flipt/run.py -------------------------------------------------------------------------------- /testsuite/texture-gettexels/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-gettexels/run.py -------------------------------------------------------------------------------- /testsuite/texture-gray/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-gray/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-gray/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-gray/run.py -------------------------------------------------------------------------------- /testsuite/texture-gray/src/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-gray/src/gray.png -------------------------------------------------------------------------------- /testsuite/texture-half/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-half/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-half/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-half/run.py -------------------------------------------------------------------------------- /testsuite/texture-icwrite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-icwrite/run.py -------------------------------------------------------------------------------- /testsuite/texture-maxres/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-maxres/run.py -------------------------------------------------------------------------------- /testsuite/texture-mip-nomip/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-mip-nomip/run.py -------------------------------------------------------------------------------- /testsuite/texture-missing/TRAVIS_SKIP_LSAN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/texture-missing/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-missing/run.py -------------------------------------------------------------------------------- /testsuite/texture-overscan/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-overscan/run.py -------------------------------------------------------------------------------- /testsuite/texture-res/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-res/README -------------------------------------------------------------------------------- /testsuite/texture-res/ref/out.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-res/ref/out.tif -------------------------------------------------------------------------------- /testsuite/texture-res/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-res/run.py -------------------------------------------------------------------------------- /testsuite/texture-skinny/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-skinny/run.py -------------------------------------------------------------------------------- /testsuite/texture-stats/ref/out.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-stats/ref/out.exr -------------------------------------------------------------------------------- /testsuite/texture-stats/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-stats/run.py -------------------------------------------------------------------------------- /testsuite/texture-texture3d/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-texture3d/run.py -------------------------------------------------------------------------------- /testsuite/texture-threadtimes/ref/out.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/texture-udim/TRAVIS_SKIP_LSAN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/texture-udim/ref/out.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-udim/ref/out.tif -------------------------------------------------------------------------------- /testsuite/texture-udim/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-udim/ref/out.txt -------------------------------------------------------------------------------- /testsuite/texture-udim/ref/out2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-udim/ref/out2.tif -------------------------------------------------------------------------------- /testsuite/texture-udim/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-udim/run.py -------------------------------------------------------------------------------- /testsuite/texture-udim2/TRAVIS_SKIP_LSAN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testsuite/texture-udim2/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-udim2/run.py -------------------------------------------------------------------------------- /testsuite/texture-uint16/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-uint16/run.py -------------------------------------------------------------------------------- /testsuite/texture-uint8/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/texture-uint8/run.py -------------------------------------------------------------------------------- /testsuite/tiff-depths/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-depths/run.py -------------------------------------------------------------------------------- /testsuite/tiff-misc/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-misc/ref/out.txt -------------------------------------------------------------------------------- /testsuite/tiff-misc/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-misc/run.py -------------------------------------------------------------------------------- /testsuite/tiff-misc/separate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-misc/separate.tif -------------------------------------------------------------------------------- /testsuite/tiff-suite/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-suite/ref/out.txt -------------------------------------------------------------------------------- /testsuite/tiff-suite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/tiff-suite/run.py -------------------------------------------------------------------------------- /testsuite/webp/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/webp/run.py -------------------------------------------------------------------------------- /testsuite/zfile/ref/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/zfile/ref/out.txt -------------------------------------------------------------------------------- /testsuite/zfile/ref/out.zfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/zfile/ref/out.zfile -------------------------------------------------------------------------------- /testsuite/zfile/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcademySoftwareFoundation/OpenImageIO/HEAD/testsuite/zfile/run.py --------------------------------------------------------------------------------