├── .gitignore └── pbrtv3 ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── cmake ├── CMakeCache.txt ├── CPackConfig.cmake ├── CPackSourceConfig.cmake ├── CTestTestfile.cmake ├── FindASan.cmake ├── FindMSan.cmake ├── FindOpenEXR.cmake ├── FindOpenEXRcustom.cmake ├── FindOpenVDB.cmake ├── FindSanitizers.cmake ├── FindTBB.cmake ├── FindTSan.cmake ├── FindUBSan.cmake ├── Findhdf5custom.cmake ├── Makefile ├── __FindOpenvdb.cmake ├── asan-wrapper └── sanitize-helpers.cmake ├── exporters └── cinema4d │ ├── PBRT Export │ ├── pbrt.pyp │ └── res │ │ ├── c4d_symbols.h │ │ ├── dialogs │ │ └── dlg_pbrt.res │ │ ├── pbrt-env-bake.c4d │ │ └── strings_us │ │ ├── c4d_strings.str │ │ └── dialogs │ │ └── dlg_pbrt.str │ └── readme.md ├── python ├── run_job.sh └── run_parallel.py └── src ├── .clang-format ├── accelerators ├── bvh.cpp ├── bvh.h ├── kdtreeaccel.cpp └── kdtreeaccel.h ├── cameras ├── environment.cpp ├── environment.h ├── orthographic.cpp ├── orthographic.h ├── perspective.cpp ├── perspective.h ├── realistic.cpp └── realistic.h ├── core ├── .sampling.h.swp ├── api.cpp ├── api.h ├── bssrdf.cpp ├── bssrdf.h ├── camera.cpp ├── camera.h ├── efloat.cpp ├── efloat.h ├── error.cpp ├── error.h ├── fileutil.cpp ├── fileutil.h ├── film.cpp ├── film.h ├── filter.cpp ├── filter.h ├── floatfile.cpp ├── floatfile.h ├── geometry.cpp ├── geometry.h ├── imageio.cpp ├── imageio.h ├── integrator.cpp ├── integrator.h ├── interaction.cpp ├── interaction.h ├── interpolation.cpp ├── interpolation.h ├── light.cpp ├── light.h ├── lightdistrib.cpp ├── lightdistrib.h ├── lowdiscrepancy.cpp ├── lowdiscrepancy.h ├── material.cpp ├── material.h ├── medium.cpp ├── medium.h ├── memory.cpp ├── memory.h ├── microfacet.cpp ├── microfacet.h ├── mipmap.h ├── parallel.cpp ├── parallel.h ├── paramset.cpp ├── paramset.h ├── parser.cpp ├── parser.h ├── pbrt.h ├── pbrtlex.cpp ├── pbrtlex.ll ├── pbrtparse.cpp ├── pbrtparse.h ├── pbrtparse.output ├── pbrtparse.y ├── port.h ├── primitive.cpp ├── primitive.h ├── progressreporter.cpp ├── progressreporter.h ├── quaternion.cpp ├── quaternion.h ├── reflection.cpp ├── reflection.h ├── rng.h ├── sampler.cpp ├── sampler.h ├── sampling.cpp ├── sampling.h ├── scene.cpp ├── scene.h ├── shape.cpp ├── shape.h ├── sobolmatrices.cpp ├── sobolmatrices.h ├── spectrum.cpp ├── spectrum.h ├── stats.cpp ├── stats.h ├── stringprint.h ├── texture.cpp ├── texture.h ├── transform.cpp ├── transform.h └── transmittance.h ├── ext ├── ArHosekSkyModel.c ├── ArHosekSkyModel.h ├── ArHosekSkyModelData_CIEXYZ.h ├── ArHosekSkyModelData_RGB.h ├── ArHosekSkyModelData_Spectral.h ├── Field3D │ ├── .gitignore │ ├── BuildSupport.py │ ├── CHANGES │ ├── CMakeLists.txt │ ├── COPYING │ ├── ExampleSite.py │ ├── Field3D.doxyfile │ ├── README │ ├── SConscript │ ├── SConstruct │ ├── apps │ │ ├── f3dinfo │ │ │ ├── .gitignore │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ ├── f3dmakemip │ │ │ ├── .gitignore │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ ├── f3dmerge │ │ │ ├── .gitignore │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ ├── f3dsample │ │ │ ├── .gitignore │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ └── sample_code │ │ │ ├── create_and_write │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ │ ├── mixed_types │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ │ ├── read │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ │ └── sparse_field_io │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ ├── cmake │ │ └── FindILMBase.cmake │ ├── contrib │ │ └── maya_plugin │ │ │ └── exportF3d │ │ │ ├── Makefile.gnu │ │ │ └── exportF3d.cpp │ ├── export │ │ ├── ClassFactory.h │ │ ├── CoordSys.h │ │ ├── Curve.h │ │ ├── DenseField.h │ │ ├── Documentation.h │ │ ├── EmptyField.h │ │ ├── Exception.h │ │ ├── Field.h │ │ ├── Field3DFile.h │ │ ├── Field3DFileHDF5.h │ │ ├── FieldCache.h │ │ ├── FieldGroup.h │ │ ├── FieldIO.h │ │ ├── FieldInterp.h │ │ ├── FieldMapping.h │ │ ├── FieldMappingIO.h │ │ ├── FieldMetadata.h │ │ ├── FieldSampler.h │ │ ├── FieldWrapper.h │ │ ├── FileSequence.h │ │ ├── Hdf5Util.h │ │ ├── InitIO.h │ │ ├── Log.h │ │ ├── MACField.h │ │ ├── MACFieldUtil.h │ │ ├── MIPBase.h │ │ ├── MIPField.h │ │ ├── MIPInterp.h │ │ ├── MIPUtil.h │ │ ├── MinMaxUtil.h │ │ ├── OgawaFwd.h │ │ ├── PatternMatch.h │ │ ├── PluginLoader.h │ │ ├── ProceduralField.h │ │ ├── RefCount.h │ │ ├── Resample.h │ │ ├── SparseDataReader.h │ │ ├── SparseField.h │ │ ├── SparseFile.h │ │ ├── SpiMathLib.h │ │ ├── StdMathLib.h │ │ ├── Traits.h │ │ ├── Types.h │ │ └── ns.h │ ├── include │ │ ├── All.h │ │ ├── DenseFieldIO.h │ │ ├── Foundation.h │ │ ├── IArchive.h │ │ ├── IData.h │ │ ├── IGroup.h │ │ ├── IStreams.h │ │ ├── MACFieldIO.h │ │ ├── MIPFieldIO.h │ │ ├── OArchive.h │ │ ├── OData.h │ │ ├── OGroup.h │ │ ├── OStream.h │ │ ├── OgIAttribute.h │ │ ├── OgIDataset.h │ │ ├── OgIGroup.h │ │ ├── OgIO.h │ │ ├── OgOAttribute.h │ │ ├── OgODataset.h │ │ ├── OgOGroup.h │ │ ├── OgSparseDataReader.h │ │ ├── OgUtil.h │ │ ├── OgawaUtil.h │ │ ├── SparseFieldIO.h │ │ ├── UtilFoundation.h │ │ └── UtilPlainOldDataType.h │ ├── man │ │ └── f3dinfo.1 │ ├── ogawaToF3D.sh │ ├── src │ │ ├── ClassFactory.cpp │ │ ├── DenseFieldIO.cpp │ │ ├── Field.cpp │ │ ├── Field3DFile.cpp │ │ ├── Field3DFile.cpp.bk │ │ ├── Field3DFileHDF5.cpp │ │ ├── FieldCache.cpp │ │ ├── FieldInterp.cpp │ │ ├── FieldMapping.cpp │ │ ├── FieldMappingIO.cpp │ │ ├── FieldMetadata.cpp │ │ ├── FileSequence.cpp │ │ ├── Hdf5Util.cpp │ │ ├── IArchive.cpp │ │ ├── IData.cpp │ │ ├── IGroup.cpp │ │ ├── IStreams.cpp │ │ ├── InitIO.cpp │ │ ├── Log.cpp │ │ ├── MACFieldIO.cpp │ │ ├── MIPFieldIO.cpp │ │ ├── MIPUtil.cpp │ │ ├── MinMaxUtil.cpp │ │ ├── OArchive.cpp │ │ ├── OData.cpp │ │ ├── OGroup.cpp │ │ ├── OStream.cpp │ │ ├── OgIGroup.cpp │ │ ├── OgUtil.cpp │ │ ├── PatternMatch.cpp │ │ ├── PluginLoader.cpp │ │ ├── ProceduralField.cpp │ │ ├── Resample.cpp │ │ ├── SparseFieldIO.cpp │ │ └── SparseFile.cpp │ └── test │ │ ├── misc_tests │ │ ├── access_speed │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ ├── lib_perf_test │ │ │ ├── .gitignore │ │ │ ├── Field3D_here │ │ │ │ └── .gitignore │ │ │ ├── INSTRUCTIONS │ │ │ ├── OpenVDB_here │ │ │ │ └── .gitignore │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── test_results │ │ │ │ ├── graypage_tests.csv │ │ │ │ ├── graypage_tests.numbers │ │ │ │ ├── graypage_tests.pdf │ │ │ │ ├── graypage_tests.txt │ │ │ │ └── statstocsv.py │ │ └── threading_and_virtual_calls │ │ │ ├── SConscript │ │ │ ├── SConstruct │ │ │ └── main.cpp │ │ └── unit_tests │ │ ├── .gitignore │ │ ├── SConscript │ │ ├── SConstruct │ │ └── UnitTest.cpp ├── glog │ ├── .gitignore │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.windows │ ├── aclocal.m4 │ ├── cmake │ │ └── DetermineGflagsNamespace.cmake │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ ├── designstyle.css │ │ └── glog.html │ ├── glog-config.cmake.in │ ├── google-glog.sln │ ├── install-sh │ ├── libglog.pc.in │ ├── ltmain.sh │ ├── m4 │ │ ├── ac_have_attribute.m4 │ │ ├── ac_have_builtin_expect.m4 │ │ ├── ac_have_sync_val_compare_and_swap.m4 │ │ ├── ac_rwlock.m4 │ │ ├── acx_pthread.m4 │ │ ├── google_namespace.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── namespaces.m4 │ │ ├── pc_from_ucontext.m4 │ │ ├── stl_namespace.m4 │ │ └── using_operator.m4 │ ├── missing │ ├── mkinstalldirs │ ├── packages │ │ ├── deb.sh │ │ ├── deb │ │ │ ├── README │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── libgoogle-glog-dev.dirs │ │ │ ├── libgoogle-glog-dev.install │ │ │ ├── libgoogle-glog0.dirs │ │ │ ├── libgoogle-glog0.install │ │ │ └── rules │ │ ├── rpm.sh │ │ └── rpm │ │ │ └── rpm.spec │ ├── src │ │ ├── base │ │ │ ├── commandlineflags.h │ │ │ ├── googleinit.h │ │ │ └── mutex.h │ │ ├── config.h.cmake.in │ │ ├── config.h.in │ │ ├── config_for_unittests.h │ │ ├── demangle.cc │ │ ├── demangle.h │ │ ├── demangle_unittest.cc │ │ ├── demangle_unittest.sh │ │ ├── demangle_unittest.txt │ │ ├── glog │ │ │ ├── log_severity.h │ │ │ ├── logging.h.in │ │ │ ├── raw_logging.h.in │ │ │ ├── stl_logging.h.in │ │ │ └── vlog_is_on.h.in │ │ ├── googletest.h │ │ ├── logging.cc │ │ ├── logging_striplog_test.sh │ │ ├── logging_striptest10.cc │ │ ├── logging_striptest2.cc │ │ ├── logging_striptest_main.cc │ │ ├── logging_unittest.cc │ │ ├── logging_unittest.err │ │ ├── mock-log.h │ │ ├── mock-log_test.cc │ │ ├── raw_logging.cc │ │ ├── signalhandler.cc │ │ ├── signalhandler_unittest.cc │ │ ├── signalhandler_unittest.sh │ │ ├── stacktrace.h │ │ ├── stacktrace_generic-inl.h │ │ ├── stacktrace_libunwind-inl.h │ │ ├── stacktrace_powerpc-inl.h │ │ ├── stacktrace_unittest.cc │ │ ├── stacktrace_x86-inl.h │ │ ├── stacktrace_x86_64-inl.h │ │ ├── stl_logging_unittest.cc │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── symbolize_unittest.cc │ │ ├── utilities.cc │ │ ├── utilities.h │ │ ├── utilities_unittest.cc │ │ ├── vlog_is_on.cc │ │ └── windows │ │ │ ├── config.h │ │ │ ├── glog │ │ │ ├── log_severity.h │ │ │ ├── logging.h │ │ │ ├── raw_logging.h │ │ │ ├── stl_logging.h │ │ │ └── vlog_is_on.h │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ └── preprocess.sh │ ├── test-driver │ └── vsprojects │ │ ├── libglog │ │ └── libglog.vcproj │ │ ├── libglog_static │ │ └── libglog_static.vcproj │ │ ├── logging_unittest │ │ └── logging_unittest.vcproj │ │ └── logging_unittest_static │ │ └── logging_unittest_static.vcproj ├── lodepng.cpp ├── lodepng.h ├── openexr │ ├── .gitignore │ ├── Contrib │ │ ├── DtexToExr │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── DtexToExr.cpp │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── Makefile.test │ │ │ ├── NEWS │ │ │ ├── PxBaseDeepHelper.h │ │ │ ├── PxDeepOutPixel.h │ │ │ ├── PxDeepOutRow.h │ │ │ ├── PxDeepUtils.cpp │ │ │ ├── PxDeepUtils.h │ │ │ ├── PxFourChanDeepRgba.h │ │ │ ├── PxOneChanDeepAlpha.h │ │ │ ├── PxOneChanDeepOpacity.h │ │ │ ├── README │ │ │ ├── bootstrap │ │ │ ├── configure.ac │ │ │ └── m4 │ │ │ │ ├── compilelinkrun.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ ├── lt~obsolete.m4 │ │ │ │ ├── path.pkgconfig.m4 │ │ │ │ └── threads.m4 │ │ ├── Photoshop │ │ │ ├── .cvsignore │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── images │ │ │ │ │ ├── Picture00.jpg │ │ │ │ │ ├── Picture01.jpg │ │ │ │ │ ├── Picture02.jpg │ │ │ │ │ ├── Picture03.jpg │ │ │ │ │ ├── Picture04.jpg │ │ │ │ │ ├── Picture05.jpg │ │ │ │ │ ├── Picture06.jpg │ │ │ │ │ ├── Picture07.jpg │ │ │ │ │ ├── Picture08.jpg │ │ │ │ │ ├── Picture09.jpg │ │ │ │ │ ├── Picture10.jpg │ │ │ │ │ ├── Picture11.jpg │ │ │ │ │ └── Picture12.jpg │ │ │ │ └── index.html │ │ │ ├── mac │ │ │ │ ├── EXRFormat.mcp │ │ │ │ └── prefix │ │ │ │ │ ├── EXRFormatPrefix.h │ │ │ │ │ ├── ExrFormatCarbonPrefix.h │ │ │ │ │ ├── ExrFormatCarbonRezPrefix.h │ │ │ │ │ └── ExrFormatClassicRezPrefix.h │ │ │ ├── rsrc │ │ │ │ └── EXRFormat.r │ │ │ ├── src │ │ │ │ ├── framework │ │ │ │ │ ├── PSAutoBuffer.cpp │ │ │ │ │ ├── PSAutoBuffer.h │ │ │ │ │ ├── PSBuffer.cpp │ │ │ │ │ ├── PSBuffer.h │ │ │ │ │ ├── PSFormatGlobals.h │ │ │ │ │ ├── PSFormatPlugin.cpp │ │ │ │ │ └── PSFormatPlugin.h │ │ │ │ ├── main │ │ │ │ │ ├── EXRFormatGlobals.h │ │ │ │ │ ├── EXRFormatPlugin.cpp │ │ │ │ │ ├── EXRFormatPlugin.h │ │ │ │ │ ├── ExrFormatGlobals.cpp │ │ │ │ │ ├── RefNumIO.cpp │ │ │ │ │ └── RefNumIO.h │ │ │ │ ├── resample │ │ │ │ │ ├── EXRResample.cpp │ │ │ │ │ └── EXRResample.h │ │ │ │ └── ui │ │ │ │ │ ├── EXRExportDialog.cpp │ │ │ │ │ ├── EXRExportDialog.h │ │ │ │ │ ├── EXRImportDialog.cpp │ │ │ │ │ └── EXRImportDialog.h │ │ │ └── win32 │ │ │ │ ├── EXRFormat.rc │ │ │ │ ├── EXRFormat.sln │ │ │ │ ├── EXRFormat.vcproj │ │ │ │ └── EXRformat-sym.h │ │ └── d_exr │ │ │ ├── Makefile │ │ │ ├── d_exr.C │ │ │ ├── rendermn.ini │ │ │ └── tst.rib │ ├── IlmBase │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Half │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── eLut.cpp │ │ │ ├── half.cpp │ │ │ ├── half.h │ │ │ ├── halfExport.h │ │ │ ├── halfFunction.h │ │ │ ├── halfLimits.h │ │ │ └── toFloat.cpp │ │ ├── HalfTest │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── testArithmetic.cpp │ │ │ ├── testArithmetic.h │ │ │ ├── testBitPatterns.cpp │ │ │ ├── testBitPatterns.h │ │ │ ├── testClassification.cpp │ │ │ ├── testClassification.h │ │ │ ├── testError.cpp │ │ │ ├── testError.h │ │ │ ├── testFunction.cpp │ │ │ ├── testFunction.h │ │ │ ├── testLimits.cpp │ │ │ ├── testLimits.h │ │ │ ├── testSize.cpp │ │ │ └── testSize.h │ │ ├── INSTALL │ │ ├── Iex │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Iex.h │ │ │ ├── IexBaseExc.cpp │ │ │ ├── IexBaseExc.h │ │ │ ├── IexErrnoExc.h │ │ │ ├── IexExport.h │ │ │ ├── IexForward.h │ │ │ ├── IexMacros.h │ │ │ ├── IexMathExc.h │ │ │ ├── IexNamespace.h │ │ │ ├── IexThrowErrnoExc.cpp │ │ │ ├── IexThrowErrnoExc.h │ │ │ └── Makefile.am │ │ ├── IexMath │ │ │ ├── CMakeLists.txt │ │ │ ├── IexMathFloatExc.cpp │ │ │ ├── IexMathFloatExc.h │ │ │ ├── IexMathFpu.cpp │ │ │ ├── IexMathFpu.h │ │ │ ├── IexMathIeeeExc.h │ │ │ └── Makefile.am │ │ ├── IexTest │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── testBaseExc.cpp │ │ │ └── testBaseExc.h │ │ ├── IlmBase.pc.in │ │ ├── IlmThread │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── IlmThread.cpp │ │ │ ├── IlmThread.h │ │ │ ├── IlmThreadExport.h │ │ │ ├── IlmThreadForward.h │ │ │ ├── IlmThreadMutex.cpp │ │ │ ├── IlmThreadMutex.h │ │ │ ├── IlmThreadMutexPosix.cpp │ │ │ ├── IlmThreadMutexWin32.cpp │ │ │ ├── IlmThreadNamespace.h │ │ │ ├── IlmThreadPool.cpp │ │ │ ├── IlmThreadPool.h │ │ │ ├── IlmThreadPosix.cpp │ │ │ ├── IlmThreadSemaphore.cpp │ │ │ ├── IlmThreadSemaphore.h │ │ │ ├── IlmThreadSemaphorePosix.cpp │ │ │ ├── IlmThreadSemaphorePosixCompat.cpp │ │ │ ├── IlmThreadSemaphoreWin32.cpp │ │ │ ├── IlmThreadWin32.cpp │ │ │ └── Makefile.am │ │ ├── Imath │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── ImathBox.cpp │ │ │ ├── ImathBox.h │ │ │ ├── ImathBoxAlgo.h │ │ │ ├── ImathColor.h │ │ │ ├── ImathColorAlgo.cpp │ │ │ ├── ImathColorAlgo.h │ │ │ ├── ImathEuler.h │ │ │ ├── ImathExc.h │ │ │ ├── ImathExport.h │ │ │ ├── ImathForward.h │ │ │ ├── ImathFrame.h │ │ │ ├── ImathFrustum.h │ │ │ ├── ImathFrustumTest.h │ │ │ ├── ImathFun.cpp │ │ │ ├── ImathFun.h │ │ │ ├── ImathGL.h │ │ │ ├── ImathGLU.h │ │ │ ├── ImathHalfLimits.h │ │ │ ├── ImathInt64.h │ │ │ ├── ImathInterval.h │ │ │ ├── ImathLimits.h │ │ │ ├── ImathLine.h │ │ │ ├── ImathLineAlgo.h │ │ │ ├── ImathMath.h │ │ │ ├── ImathMatrix.h │ │ │ ├── ImathMatrixAlgo.cpp │ │ │ ├── ImathMatrixAlgo.h │ │ │ ├── ImathNamespace.h │ │ │ ├── ImathPlane.h │ │ │ ├── ImathPlatform.h │ │ │ ├── ImathQuat.h │ │ │ ├── ImathRandom.cpp │ │ │ ├── ImathRandom.h │ │ │ ├── ImathRoots.h │ │ │ ├── ImathShear.cpp │ │ │ ├── ImathShear.h │ │ │ ├── ImathSphere.h │ │ │ ├── ImathVec.cpp │ │ │ ├── ImathVec.h │ │ │ ├── ImathVecAlgo.h │ │ │ └── Makefile.am │ │ ├── ImathTest │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── testBox.cpp │ │ │ ├── testBox.h │ │ │ ├── testBoxAlgo.cpp │ │ │ ├── testBoxAlgo.h │ │ │ ├── testColor.cpp │ │ │ ├── testColor.h │ │ │ ├── testExtractEuler.cpp │ │ │ ├── testExtractEuler.h │ │ │ ├── testExtractSHRT.cpp │ │ │ ├── testExtractSHRT.h │ │ │ ├── testFrustum.cpp │ │ │ ├── testFrustum.h │ │ │ ├── testFrustumTest.cpp │ │ │ ├── testFrustumTest.h │ │ │ ├── testFun.cpp │ │ │ ├── testFun.h │ │ │ ├── testInvert.cpp │ │ │ ├── testInvert.h │ │ │ ├── testJacobiEigenSolver.cpp │ │ │ ├── testJacobiEigenSolver.h │ │ │ ├── testLineAlgo.cpp │ │ │ ├── testLineAlgo.h │ │ │ ├── testMatrix.cpp │ │ │ ├── testMatrix.h │ │ │ ├── testMiscMatrixAlgo.cpp │ │ │ ├── testMiscMatrixAlgo.h │ │ │ ├── testProcrustes.cpp │ │ │ ├── testProcrustes.h │ │ │ ├── testQuat.cpp │ │ │ ├── testQuat.h │ │ │ ├── testQuatSetRotation.cpp │ │ │ ├── testQuatSetRotation.h │ │ │ ├── testQuatSlerp.cpp │ │ │ ├── testQuatSlerp.h │ │ │ ├── testRandom.cpp │ │ │ ├── testRandom.h │ │ │ ├── testRoots.cpp │ │ │ ├── testRoots.h │ │ │ ├── testShear.cpp │ │ │ ├── testShear.h │ │ │ ├── testTinySVD.cpp │ │ │ ├── testTinySVD.h │ │ │ ├── testVec.cpp │ │ │ └── testVec.h │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── README │ │ ├── README.CVS │ │ ├── README.OSX │ │ ├── README.cmake.txt │ │ ├── README.git │ │ ├── README.namespacing │ │ ├── bootstrap │ │ ├── config.windows │ │ │ └── IlmBaseConfig.h │ │ ├── config │ │ │ ├── IlmBaseConfig.h.in │ │ │ └── Makefile.am │ │ ├── configure.ac │ │ └── m4 │ │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ │ └── threads.m4 │ ├── LICENSE │ ├── OpenEXR │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── IlmImf │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── ImfAcesFile.cpp │ │ │ ├── ImfAcesFile.h │ │ │ ├── ImfArray.h │ │ │ ├── ImfAttribute.cpp │ │ │ ├── ImfAttribute.h │ │ │ ├── ImfAutoArray.h │ │ │ ├── ImfB44Compressor.cpp │ │ │ ├── ImfB44Compressor.h │ │ │ ├── ImfBoxAttribute.cpp │ │ │ ├── ImfBoxAttribute.h │ │ │ ├── ImfCRgbaFile.cpp │ │ │ ├── ImfCRgbaFile.h │ │ │ ├── ImfChannelList.cpp │ │ │ ├── ImfChannelList.h │ │ │ ├── ImfChannelListAttribute.cpp │ │ │ ├── ImfChannelListAttribute.h │ │ │ ├── ImfCheckedArithmetic.h │ │ │ ├── ImfChromaticities.cpp │ │ │ ├── ImfChromaticities.h │ │ │ ├── ImfChromaticitiesAttribute.cpp │ │ │ ├── ImfChromaticitiesAttribute.h │ │ │ ├── ImfCompositeDeepScanLine.cpp │ │ │ ├── ImfCompositeDeepScanLine.h │ │ │ ├── ImfCompression.h │ │ │ ├── ImfCompressionAttribute.cpp │ │ │ ├── ImfCompressionAttribute.h │ │ │ ├── ImfCompressor.cpp │ │ │ ├── ImfCompressor.h │ │ │ ├── ImfConvert.cpp │ │ │ ├── ImfConvert.h │ │ │ ├── ImfDeepCompositing.cpp │ │ │ ├── ImfDeepCompositing.h │ │ │ ├── ImfDeepFrameBuffer.cpp │ │ │ ├── ImfDeepFrameBuffer.h │ │ │ ├── ImfDeepImageState.h │ │ │ ├── ImfDeepImageStateAttribute.cpp │ │ │ ├── ImfDeepImageStateAttribute.h │ │ │ ├── ImfDeepScanLineInputFile.cpp │ │ │ ├── ImfDeepScanLineInputFile.h │ │ │ ├── ImfDeepScanLineInputPart.cpp │ │ │ ├── ImfDeepScanLineInputPart.h │ │ │ ├── ImfDeepScanLineOutputFile.cpp │ │ │ ├── ImfDeepScanLineOutputFile.h │ │ │ ├── ImfDeepScanLineOutputPart.cpp │ │ │ ├── ImfDeepScanLineOutputPart.h │ │ │ ├── ImfDeepTiledInputFile.cpp │ │ │ ├── ImfDeepTiledInputFile.h │ │ │ ├── ImfDeepTiledInputPart.cpp │ │ │ ├── ImfDeepTiledInputPart.h │ │ │ ├── ImfDeepTiledOutputFile.cpp │ │ │ ├── ImfDeepTiledOutputFile.h │ │ │ ├── ImfDeepTiledOutputPart.cpp │ │ │ ├── ImfDeepTiledOutputPart.h │ │ │ ├── ImfDoubleAttribute.cpp │ │ │ ├── ImfDoubleAttribute.h │ │ │ ├── ImfDwaCompressor.cpp │ │ │ ├── ImfDwaCompressor.h │ │ │ ├── ImfDwaCompressorSimd.h │ │ │ ├── ImfEnvmap.cpp │ │ │ ├── ImfEnvmap.h │ │ │ ├── ImfEnvmapAttribute.cpp │ │ │ ├── ImfEnvmapAttribute.h │ │ │ ├── ImfExport.h │ │ │ ├── ImfFastHuf.cpp │ │ │ ├── ImfFastHuf.h │ │ │ ├── ImfFloatAttribute.cpp │ │ │ ├── ImfFloatAttribute.h │ │ │ ├── ImfFloatVectorAttribute.cpp │ │ │ ├── ImfFloatVectorAttribute.h │ │ │ ├── ImfForward.h │ │ │ ├── ImfFrameBuffer.cpp │ │ │ ├── ImfFrameBuffer.h │ │ │ ├── ImfFramesPerSecond.cpp │ │ │ ├── ImfFramesPerSecond.h │ │ │ ├── ImfGenericInputFile.cpp │ │ │ ├── ImfGenericInputFile.h │ │ │ ├── ImfGenericOutputFile.cpp │ │ │ ├── ImfGenericOutputFile.h │ │ │ ├── ImfHeader.cpp │ │ │ ├── ImfHeader.h │ │ │ ├── ImfHuf.cpp │ │ │ ├── ImfHuf.h │ │ │ ├── ImfIO.cpp │ │ │ ├── ImfIO.h │ │ │ ├── ImfInputFile.cpp │ │ │ ├── ImfInputFile.h │ │ │ ├── ImfInputPart.cpp │ │ │ ├── ImfInputPart.h │ │ │ ├── ImfInputPartData.cpp │ │ │ ├── ImfInputPartData.h │ │ │ ├── ImfInputStreamMutex.h │ │ │ ├── ImfInt64.h │ │ │ ├── ImfIntAttribute.cpp │ │ │ ├── ImfIntAttribute.h │ │ │ ├── ImfKeyCode.cpp │ │ │ ├── ImfKeyCode.h │ │ │ ├── ImfKeyCodeAttribute.cpp │ │ │ ├── ImfKeyCodeAttribute.h │ │ │ ├── ImfLineOrder.h │ │ │ ├── ImfLineOrderAttribute.cpp │ │ │ ├── ImfLineOrderAttribute.h │ │ │ ├── ImfLut.cpp │ │ │ ├── ImfLut.h │ │ │ ├── ImfMatrixAttribute.cpp │ │ │ ├── ImfMatrixAttribute.h │ │ │ ├── ImfMisc.cpp │ │ │ ├── ImfMisc.h │ │ │ ├── ImfMultiPartInputFile.cpp │ │ │ ├── ImfMultiPartInputFile.h │ │ │ ├── ImfMultiPartOutputFile.cpp │ │ │ ├── ImfMultiPartOutputFile.h │ │ │ ├── ImfMultiView.cpp │ │ │ ├── ImfMultiView.h │ │ │ ├── ImfName.h │ │ │ ├── ImfNamespace.h │ │ │ ├── ImfOpaqueAttribute.cpp │ │ │ ├── ImfOpaqueAttribute.h │ │ │ ├── ImfOptimizedPixelReading.h │ │ │ ├── ImfOutputFile.cpp │ │ │ ├── ImfOutputFile.h │ │ │ ├── ImfOutputPart.cpp │ │ │ ├── ImfOutputPart.h │ │ │ ├── ImfOutputPartData.cpp │ │ │ ├── ImfOutputPartData.h │ │ │ ├── ImfOutputStreamMutex.h │ │ │ ├── ImfPartHelper.h │ │ │ ├── ImfPartType.cpp │ │ │ ├── ImfPartType.h │ │ │ ├── ImfPixelType.h │ │ │ ├── ImfPizCompressor.cpp │ │ │ ├── ImfPizCompressor.h │ │ │ ├── ImfPreviewImage.cpp │ │ │ ├── ImfPreviewImage.h │ │ │ ├── ImfPreviewImageAttribute.cpp │ │ │ ├── ImfPreviewImageAttribute.h │ │ │ ├── ImfPxr24Compressor.cpp │ │ │ ├── ImfPxr24Compressor.h │ │ │ ├── ImfRational.cpp │ │ │ ├── ImfRational.h │ │ │ ├── ImfRationalAttribute.cpp │ │ │ ├── ImfRationalAttribute.h │ │ │ ├── ImfRgba.h │ │ │ ├── ImfRgbaFile.cpp │ │ │ ├── ImfRgbaFile.h │ │ │ ├── ImfRgbaYca.cpp │ │ │ ├── ImfRgbaYca.h │ │ │ ├── ImfRle.cpp │ │ │ ├── ImfRle.h │ │ │ ├── ImfRleCompressor.cpp │ │ │ ├── ImfRleCompressor.h │ │ │ ├── ImfScanLineInputFile.cpp │ │ │ ├── ImfScanLineInputFile.h │ │ │ ├── ImfSimd.h │ │ │ ├── ImfStandardAttributes.cpp │ │ │ ├── ImfStandardAttributes.h │ │ │ ├── ImfStdIO.cpp │ │ │ ├── ImfStdIO.h │ │ │ ├── ImfStringAttribute.cpp │ │ │ ├── ImfStringAttribute.h │ │ │ ├── ImfStringVectorAttribute.cpp │ │ │ ├── ImfStringVectorAttribute.h │ │ │ ├── ImfSystemSpecific.cpp │ │ │ ├── ImfSystemSpecific.h │ │ │ ├── ImfTestFile.cpp │ │ │ ├── ImfTestFile.h │ │ │ ├── ImfThreading.cpp │ │ │ ├── ImfThreading.h │ │ │ ├── ImfTileDescription.h │ │ │ ├── ImfTileDescriptionAttribute.cpp │ │ │ ├── ImfTileDescriptionAttribute.h │ │ │ ├── ImfTileOffsets.cpp │ │ │ ├── ImfTileOffsets.h │ │ │ ├── ImfTiledInputFile.cpp │ │ │ ├── ImfTiledInputFile.h │ │ │ ├── ImfTiledInputPart.cpp │ │ │ ├── ImfTiledInputPart.h │ │ │ ├── ImfTiledMisc.cpp │ │ │ ├── ImfTiledMisc.h │ │ │ ├── ImfTiledOutputFile.cpp │ │ │ ├── ImfTiledOutputFile.h │ │ │ ├── ImfTiledOutputPart.cpp │ │ │ ├── ImfTiledOutputPart.h │ │ │ ├── ImfTiledRgbaFile.cpp │ │ │ ├── ImfTiledRgbaFile.h │ │ │ ├── ImfTimeCode.cpp │ │ │ ├── ImfTimeCode.h │ │ │ ├── ImfTimeCodeAttribute.cpp │ │ │ ├── ImfTimeCodeAttribute.h │ │ │ ├── ImfVecAttribute.cpp │ │ │ ├── ImfVecAttribute.h │ │ │ ├── ImfVersion.cpp │ │ │ ├── ImfVersion.h │ │ │ ├── ImfWav.cpp │ │ │ ├── ImfWav.h │ │ │ ├── ImfXdr.h │ │ │ ├── ImfZip.cpp │ │ │ ├── ImfZip.h │ │ │ ├── ImfZipCompressor.cpp │ │ │ ├── ImfZipCompressor.h │ │ │ ├── Makefile.am │ │ │ ├── b44ExpLogTable.cpp │ │ │ └── dwaLookups.cpp │ │ ├── IlmImfExamples │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── drawImage.cpp │ │ │ ├── drawImage.h │ │ │ ├── generalInterfaceExamples.cpp │ │ │ ├── generalInterfaceExamples.h │ │ │ ├── generalInterfaceTiledExamples.cpp │ │ │ ├── generalInterfaceTiledExamples.h │ │ │ ├── lowLevelIoExamples.cpp │ │ │ ├── lowLevelIoExamples.h │ │ │ ├── main.cpp │ │ │ ├── namespaceAlias.h │ │ │ ├── previewImageExamples.cpp │ │ │ ├── previewImageExamples.h │ │ │ ├── rgbaInterfaceExamples.cpp │ │ │ ├── rgbaInterfaceExamples.h │ │ │ ├── rgbaInterfaceTiledExamples.cpp │ │ │ └── rgbaInterfaceTiledExamples.h │ │ ├── IlmImfFuzzTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── fuzzFile.cpp │ │ │ ├── fuzzFile.h │ │ │ ├── main.cpp │ │ │ ├── testFuzzDeepScanLines.cpp │ │ │ ├── testFuzzDeepScanLines.h │ │ │ ├── testFuzzDeepTiles.cpp │ │ │ ├── testFuzzDeepTiles.h │ │ │ ├── testFuzzScanLines.cpp │ │ │ ├── testFuzzScanLines.h │ │ │ ├── testFuzzTiles.cpp │ │ │ ├── testFuzzTiles.h │ │ │ └── tmpDir.h │ │ ├── IlmImfTest │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── comp_b44.exr │ │ │ ├── comp_b44_piz.exr │ │ │ ├── comp_bad_bounds_piz.exr │ │ │ ├── comp_bad_neg_bounds_pxr24.exr │ │ │ ├── comp_bad_pos_bounds_piz.exr │ │ │ ├── comp_bad_pos_bounds_pxr24.exr │ │ │ ├── comp_dwaa_piz.exr │ │ │ ├── comp_dwaa_v1.exr │ │ │ ├── comp_dwaa_v2.exr │ │ │ ├── comp_dwab_piz.exr │ │ │ ├── comp_dwab_v1.exr │ │ │ ├── comp_dwab_v2.exr │ │ │ ├── comp_early_eof_piz.exr │ │ │ ├── comp_invalid_unknown.exr │ │ │ ├── comp_none.exr │ │ │ ├── comp_piz.exr │ │ │ ├── comp_rle.exr │ │ │ ├── comp_short_decode_piz.exr │ │ │ ├── comp_zip.exr │ │ │ ├── comp_zips.exr │ │ │ ├── compareB44.cpp │ │ │ ├── compareB44.h │ │ │ ├── compareDwa.cpp │ │ │ ├── compareDwa.h │ │ │ ├── compareFloat.cpp │ │ │ ├── compareFloat.h │ │ │ ├── invalid.exr │ │ │ ├── invalid_shared_attrs_multipart.exr │ │ │ ├── lineOrder_decreasing.exr │ │ │ ├── lineOrder_increasing.exr │ │ │ ├── main.cpp │ │ │ ├── scanline_with_deepscanline_type.exr │ │ │ ├── scanline_with_deeptiled_type.exr │ │ │ ├── scanline_with_tiledimage_type.exr │ │ │ ├── testAttributes.cpp │ │ │ ├── testAttributes.h │ │ │ ├── testBackwardCompatibility.cpp │ │ │ ├── testBackwardCompatibility.h │ │ │ ├── testBadTypeAttributes.cpp │ │ │ ├── testBadTypeAttributes.h │ │ │ ├── testChannels.cpp │ │ │ ├── testChannels.h │ │ │ ├── testCompositeDeepScanLine.cpp │ │ │ ├── testCompositeDeepScanLine.h │ │ │ ├── testCompression.cpp │ │ │ ├── testCompression.h │ │ │ ├── testConversion.cpp │ │ │ ├── testConversion.h │ │ │ ├── testCopyDeepScanLine.cpp │ │ │ ├── testCopyDeepScanLine.h │ │ │ ├── testCopyDeepTiled.cpp │ │ │ ├── testCopyDeepTiled.h │ │ │ ├── testCopyMultiPartFile.cpp │ │ │ ├── testCopyMultiPartFile.h │ │ │ ├── testCopyPixels.cpp │ │ │ ├── testCopyPixels.h │ │ │ ├── testCustomAttributes.cpp │ │ │ ├── testCustomAttributes.h │ │ │ ├── testDeepScanLineBasic.cpp │ │ │ ├── testDeepScanLineBasic.h │ │ │ ├── testDeepScanLineHuge.cpp │ │ │ ├── testDeepScanLineHuge.h │ │ │ ├── testDeepScanLineMultipleRead.cpp │ │ │ ├── testDeepScanLineMultipleRead.h │ │ │ ├── testDeepTiledBasic.cpp │ │ │ ├── testDeepTiledBasic.h │ │ │ ├── testDwaCompressorSimd.cpp │ │ │ ├── testDwaCompressorSimd.h │ │ │ ├── testExistingStreams.cpp │ │ │ ├── testExistingStreams.h │ │ │ ├── testFutureProofing.cpp │ │ │ ├── testFutureProofing.h │ │ │ ├── testHuf.cpp │ │ │ ├── testHuf.h │ │ │ ├── testInputPart.cpp │ │ │ ├── testInputPart.h │ │ │ ├── testIsComplete.cpp │ │ │ ├── testIsComplete.h │ │ │ ├── testLineOrder.cpp │ │ │ ├── testLineOrder.h │ │ │ ├── testLut.cpp │ │ │ ├── testLut.h │ │ │ ├── testMagic.cpp │ │ │ ├── testMagic.h │ │ │ ├── testMalformedImages.cpp │ │ │ ├── testMalformedImages.h │ │ │ ├── testMultiPartApi.cpp │ │ │ ├── testMultiPartApi.h │ │ │ ├── testMultiPartFileMixingBasic.cpp │ │ │ ├── testMultiPartFileMixingBasic.h │ │ │ ├── testMultiPartSharedAttributes.cpp │ │ │ ├── testMultiPartSharedAttributes.h │ │ │ ├── testMultiPartThreading.cpp │ │ │ ├── testMultiPartThreading.h │ │ │ ├── testMultiScanlinePartThreading.cpp │ │ │ ├── testMultiScanlinePartThreading.h │ │ │ ├── testMultiTiledPartThreading.cpp │ │ │ ├── testMultiTiledPartThreading.h │ │ │ ├── testMultiView.cpp │ │ │ ├── testMultiView.h │ │ │ ├── testNativeFormat.cpp │ │ │ ├── testNativeFormat.h │ │ │ ├── testOptimized.cpp │ │ │ ├── testOptimized.h │ │ │ ├── testOptimizedInterleavePatterns.cpp │ │ │ ├── testOptimizedInterleavePatterns.h │ │ │ ├── testPartHelper.cpp │ │ │ ├── testPartHelper.h │ │ │ ├── testPreviewImage.cpp │ │ │ ├── testPreviewImage.h │ │ │ ├── testRgba.cpp │ │ │ ├── testRgba.h │ │ │ ├── testRgbaThreading.cpp │ │ │ ├── testRgbaThreading.h │ │ │ ├── testRle.cpp │ │ │ ├── testRle.h │ │ │ ├── testSampleImages.cpp │ │ │ ├── testSampleImages.h │ │ │ ├── testScanLineApi.cpp │ │ │ ├── testScanLineApi.h │ │ │ ├── testSharedFrameBuffer.cpp │ │ │ ├── testSharedFrameBuffer.h │ │ │ ├── testStandardAttributes.cpp │ │ │ ├── testStandardAttributes.h │ │ │ ├── testTiledCompression.cpp │ │ │ ├── testTiledCompression.h │ │ │ ├── testTiledCopyPixels.cpp │ │ │ ├── testTiledCopyPixels.h │ │ │ ├── testTiledLineOrder.cpp │ │ │ ├── testTiledLineOrder.h │ │ │ ├── testTiledRgba.cpp │ │ │ ├── testTiledRgba.h │ │ │ ├── testTiledYa.cpp │ │ │ ├── testTiledYa.h │ │ │ ├── testWav.cpp │ │ │ ├── testWav.h │ │ │ ├── testXdr.cpp │ │ │ ├── testXdr.h │ │ │ ├── testYca.cpp │ │ │ ├── testYca.h │ │ │ ├── test_native1.exr │ │ │ ├── test_native2.exr │ │ │ ├── tiled.exr │ │ │ ├── tiled_with_deepscanline_type.exr │ │ │ ├── tiled_with_deeptile_type.exr │ │ │ ├── tiled_with_scanlineimage_type.exr │ │ │ ├── tmpDir.h │ │ │ ├── v1.7.test.1.exr │ │ │ ├── v1.7.test.interleaved.exr │ │ │ ├── v1.7.test.planar.exr │ │ │ └── v1.7.test.tiled.exr │ │ ├── IlmImfUtil │ │ │ ├── CMakeLists.txt │ │ │ ├── ImfDeepImage.cpp │ │ │ ├── ImfDeepImage.h │ │ │ ├── ImfDeepImageChannel.cpp │ │ │ ├── ImfDeepImageChannel.h │ │ │ ├── ImfDeepImageIO.cpp │ │ │ ├── ImfDeepImageIO.h │ │ │ ├── ImfDeepImageLevel.cpp │ │ │ ├── ImfDeepImageLevel.h │ │ │ ├── ImfFlatImage.cpp │ │ │ ├── ImfFlatImage.h │ │ │ ├── ImfFlatImageChannel.cpp │ │ │ ├── ImfFlatImageChannel.h │ │ │ ├── ImfFlatImageIO.cpp │ │ │ ├── ImfFlatImageIO.h │ │ │ ├── ImfFlatImageLevel.cpp │ │ │ ├── ImfFlatImageLevel.h │ │ │ ├── ImfImage.cpp │ │ │ ├── ImfImage.h │ │ │ ├── ImfImageChannel.cpp │ │ │ ├── ImfImageChannel.h │ │ │ ├── ImfImageChannelRenaming.h │ │ │ ├── ImfImageDataWindow.cpp │ │ │ ├── ImfImageDataWindow.h │ │ │ ├── ImfImageIO.cpp │ │ │ ├── ImfImageIO.h │ │ │ ├── ImfImageLevel.cpp │ │ │ ├── ImfImageLevel.h │ │ │ ├── ImfSampleCountChannel.cpp │ │ │ ├── ImfSampleCountChannel.h │ │ │ ├── Makefile.am │ │ │ └── README │ │ ├── IlmImfUtilTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── testDeepImage.cpp │ │ │ ├── testDeepImage.h │ │ │ ├── testFlatImage.cpp │ │ │ ├── testFlatImage.h │ │ │ ├── testIO.cpp │ │ │ ├── testIO.h │ │ │ └── tmpDir.h │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── OpenEXR.pc.in │ │ ├── PATENTS │ │ ├── README │ │ ├── README.CVS │ │ ├── README.OSX │ │ ├── README.cmake.txt │ │ ├── README.git │ │ ├── README.namespacing │ │ ├── bootstrap │ │ ├── config.windows │ │ │ └── OpenEXRConfig.h │ │ ├── config │ │ │ ├── Makefile.am │ │ │ └── OpenEXRConfig.h.in │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── .cvsignore │ │ │ ├── InterpretingDeepPixels.docx │ │ │ ├── InterpretingDeepPixels.pdf │ │ │ ├── Makefile.am │ │ │ ├── MultiViewOpenEXR.odt │ │ │ ├── MultiViewOpenEXR.pdf │ │ │ ├── OpenEXRFileLayout.odt │ │ │ ├── OpenEXRFileLayout.pdf │ │ │ ├── ReadingAndWritingImageFiles.odt │ │ │ ├── ReadingAndWritingImageFiles.pdf │ │ │ ├── TechnicalIntroduction.docx │ │ │ ├── TechnicalIntroduction.odt │ │ │ ├── TechnicalIntroduction.pdf │ │ │ ├── TheoryDeepPixels.pdf │ │ │ ├── images │ │ │ │ ├── cubeMap.big.png │ │ │ │ ├── cubeMap.png │ │ │ │ ├── latlongMap.big.png │ │ │ │ ├── latlongMap.png │ │ │ │ ├── screenwin.big.png │ │ │ │ ├── screenwin.png │ │ │ │ ├── tiles.big.png │ │ │ │ ├── tiles.png │ │ │ │ ├── windowExample1.big.png │ │ │ │ ├── windowExample1.png │ │ │ │ ├── windowExample2.big.png │ │ │ │ └── windowExample2.png │ │ │ └── source_images │ │ │ │ ├── blobs.png │ │ │ │ ├── cubeMap.fig │ │ │ │ ├── dataDisplayWindow.fig │ │ │ │ ├── kapaa.png │ │ │ │ ├── latlongMap.fig │ │ │ │ ├── screenwin.fig │ │ │ │ ├── still.png │ │ │ │ ├── tiles.fig │ │ │ │ ├── windowExample1.fig │ │ │ │ └── windowExample2.fig │ │ ├── exr2aces │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── main.cpp │ │ ├── exrbuild │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── exrbuild.cpp │ │ ├── exrenvmap │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── EnvmapImage.cpp │ │ │ ├── EnvmapImage.h │ │ │ ├── Makefile.am │ │ │ ├── blurImage.cpp │ │ │ ├── blurImage.h │ │ │ ├── main.cpp │ │ │ ├── makeCubeMap.cpp │ │ │ ├── makeCubeMap.h │ │ │ ├── makeLatLongMap.cpp │ │ │ ├── makeLatLongMap.h │ │ │ ├── namespaceAlias.h │ │ │ ├── readInputImage.cpp │ │ │ ├── readInputImage.h │ │ │ ├── resizeImage.cpp │ │ │ └── resizeImage.h │ │ ├── exrheader │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── main.cpp │ │ ├── exrmakepreview │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── makePreview.cpp │ │ │ └── makePreview.h │ │ ├── exrmaketiled │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Image.cpp │ │ │ ├── Image.h │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── makeTiled.cpp │ │ │ ├── makeTiled.h │ │ │ └── namespaceAlias.h │ │ ├── exrmultipart │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── exrmultipart.cpp │ │ ├── exrmultiview │ │ │ ├── CMakeLists.txt │ │ │ ├── Image.cpp │ │ │ ├── Image.h │ │ │ ├── Makefile.am │ │ │ ├── main.cpp │ │ │ ├── makeMultiView.cpp │ │ │ ├── makeMultiView.h │ │ │ └── namespaceAlias.h │ │ ├── exrstdattr │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── main.cpp │ │ ├── m4 │ │ │ ├── compilelinkrun.m4 │ │ │ ├── path.pkgconfig.m4 │ │ │ └── threads.m4 │ │ └── openexr.m4 │ ├── OpenEXR_Viewers │ │ ├── .cvsignore │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── OpenEXR_Viewers.pc.in │ │ ├── README │ │ ├── README.CVS │ │ ├── README.OSX │ │ ├── README.win32 │ │ ├── bootstrap │ │ ├── config │ │ │ ├── Makefile.am │ │ │ └── OpenEXR_ViewersConfig.h.in │ │ ├── configure.ac │ │ ├── doc │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── OpenEXRViewers.odt │ │ │ └── OpenEXRViewers.pdf │ │ ├── exrdisplay │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── GlWindow3d.cpp │ │ │ ├── GlWindow3d.h │ │ │ ├── ImageView.cpp │ │ │ ├── ImageView.h │ │ │ ├── Makefile.am │ │ │ ├── applyCtl.cpp │ │ │ ├── applyCtl.h │ │ │ ├── loadImage.cpp │ │ │ ├── loadImage.h │ │ │ ├── main.cpp │ │ │ ├── namespaceAlias.h │ │ │ ├── scaleImage.cpp │ │ │ └── scaleImage.h │ │ ├── m4 │ │ │ ├── compilelinkrun.m4 │ │ │ ├── path.cb.m4 │ │ │ ├── path.fltk.m4 │ │ │ ├── path.gl.m4 │ │ │ ├── path.pkgconfig.m4 │ │ │ └── threads.m4 │ │ └── playexr │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── FileReadingThread.cpp │ │ │ ├── FileReadingThread.h │ │ │ ├── ImageBuffers.cpp │ │ │ ├── ImageBuffers.h │ │ │ ├── Makefile.am │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── ctlToLut.cpp │ │ │ ├── ctlToLut.h │ │ │ ├── fileNameForFrame.cpp │ │ │ ├── fileNameForFrame.h │ │ │ ├── main.cpp │ │ │ ├── osDependent.cpp │ │ │ ├── osDependent.h │ │ │ ├── playExr.cpp │ │ │ └── playExr.h │ ├── PyIlmBase │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NEWS │ │ ├── PyIex │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── PyIex.cpp │ │ │ ├── PyIex.h │ │ │ ├── PyIexExport.h │ │ │ ├── PyIexTypeTranslator.h │ │ │ └── iexmodule.cpp │ │ ├── PyIexTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── pyIexTest.in │ │ ├── PyIlmBase.pc.in │ │ ├── PyImath │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── PyImath.cpp │ │ │ ├── PyImath.h │ │ │ ├── PyImathAutovectorize.cpp │ │ │ ├── PyImathAutovectorize.h │ │ │ ├── PyImathBasicTypes.cpp │ │ │ ├── PyImathBasicTypes.h │ │ │ ├── PyImathBox.cpp │ │ │ ├── PyImathBox.h │ │ │ ├── PyImathBox2Array.cpp │ │ │ ├── PyImathBox3Array.cpp │ │ │ ├── PyImathBoxArrayImpl.h │ │ │ ├── PyImathColor.h │ │ │ ├── PyImathColor3.cpp │ │ │ ├── PyImathColor3ArrayImpl.h │ │ │ ├── PyImathColor4.cpp │ │ │ ├── PyImathColor4Array2DImpl.h │ │ │ ├── PyImathColor4ArrayImpl.h │ │ │ ├── PyImathDecorators.h │ │ │ ├── PyImathEuler.cpp │ │ │ ├── PyImathEuler.h │ │ │ ├── PyImathExport.h │ │ │ ├── PyImathFixedArray.cpp │ │ │ ├── PyImathFixedArray.h │ │ │ ├── PyImathFixedArray2D.h │ │ │ ├── PyImathFixedMatrix.h │ │ │ ├── PyImathFixedVArray.cpp │ │ │ ├── PyImathFixedVArray.h │ │ │ ├── PyImathFrustum.cpp │ │ │ ├── PyImathFrustum.h │ │ │ ├── PyImathFun.cpp │ │ │ ├── PyImathFun.h │ │ │ ├── PyImathLine.cpp │ │ │ ├── PyImathLine.h │ │ │ ├── PyImathM44Array.cpp │ │ │ ├── PyImathM44Array.h │ │ │ ├── PyImathMathExc.h │ │ │ ├── PyImathMatrix.h │ │ │ ├── PyImathMatrix33.cpp │ │ │ ├── PyImathMatrix44.cpp │ │ │ ├── PyImathOperators.h │ │ │ ├── PyImathPlane.cpp │ │ │ ├── PyImathPlane.h │ │ │ ├── PyImathQuat.cpp │ │ │ ├── PyImathQuat.h │ │ │ ├── PyImathRandom.cpp │ │ │ ├── PyImathRandom.h │ │ │ ├── PyImathShear.cpp │ │ │ ├── PyImathShear.h │ │ │ ├── PyImathStringArray.cpp │ │ │ ├── PyImathStringArray.h │ │ │ ├── PyImathStringArrayRegister.h │ │ │ ├── PyImathStringTable.cpp │ │ │ ├── PyImathStringTable.h │ │ │ ├── PyImathTask.cpp │ │ │ ├── PyImathTask.h │ │ │ ├── PyImathUtil.cpp │ │ │ ├── PyImathUtil.h │ │ │ ├── PyImathVec.h │ │ │ ├── PyImathVec2Impl.h │ │ │ ├── PyImathVec2fd.cpp │ │ │ ├── PyImathVec2si.cpp │ │ │ ├── PyImathVec3ArrayImpl.h │ │ │ ├── PyImathVec3Impl.h │ │ │ ├── PyImathVec3fd.cpp │ │ │ ├── PyImathVec3si.cpp │ │ │ ├── PyImathVec3siArray.cpp │ │ │ ├── PyImathVec4ArrayImpl.h │ │ │ ├── PyImathVec4Impl.h │ │ │ ├── PyImathVec4fd.cpp │ │ │ ├── PyImathVec4si.cpp │ │ │ ├── PyImathVec4siArray.cpp │ │ │ ├── PyImathVecOperators.h │ │ │ ├── imathmodule.cpp │ │ │ └── varraySemantics.txt │ │ ├── PyImathNumpy │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── imathnumpymodule.cpp │ │ ├── PyImathNumpyTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── pyImathNumpyTest.in │ │ ├── PyImathTest │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── pyImathTest.in │ │ ├── README │ │ ├── README.OSX │ │ ├── bootstrap │ │ ├── config.windows │ │ │ └── PyIlmBaseConfig.h │ │ ├── config │ │ │ ├── Makefile.am │ │ │ └── PyIlmBaseConfig.h.in │ │ ├── configure.ac │ │ ├── doc │ │ │ └── Makefile.am │ │ ├── m4 │ │ │ ├── compilelinkrun.m4 │ │ │ ├── path.pkgconfig.m4 │ │ │ └── threads.m4 │ │ └── pyilmbase.m4 │ └── README.md ├── rply.cpp ├── rply.h ├── targa.cpp ├── targa.h └── zlib │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── amd64 │ │ └── amd64-match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ └── readme.txt │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── inffas32.asm │ │ ├── match686.asm │ │ └── readme.txt │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ ├── pufftest.c │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── zlib.rc │ │ └── zlibvc.def │ │ ├── vc11 │ │ ├── zlib.rc │ │ └── zlibvc.def │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.emx │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ └── visual-basic.txt │ ├── qnx │ └── package.qpg │ ├── test │ ├── example.c │ ├── infcover.c │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zconf.h.included │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── filters ├── box.cpp ├── box.h ├── gaussian.cpp ├── gaussian.h ├── mitchell.cpp ├── mitchell.h ├── sinc.cpp ├── sinc.h ├── triangle.cpp └── triangle.h ├── integrators ├── ao.cpp ├── ao.h ├── bdpt.cpp ├── bdpt.h ├── delta.cpp ├── delta.h ├── directlighting.cpp ├── directlighting.h ├── mlt.cpp ├── mlt.h ├── nullpath.cpp ├── nullpath.h ├── path.cpp ├── path.h ├── spectral.cpp ├── spectral.h ├── spectralmis.cpp ├── spectralmis.h ├── sppm.cpp ├── sppm.h ├── unidirectionalspectralmis.cpp ├── unidirectionalspectralmis.h ├── volpath.cpp ├── volpath.h ├── volpathmod.cpp ├── volpathmod.h ├── whitted.cpp └── whitted.h ├── lights ├── .diffuse.h.swp ├── diffuse.cpp ├── diffuse.h ├── distant.cpp ├── distant.h ├── goniometric.cpp ├── goniometric.h ├── infinite.cpp ├── infinite.h ├── point.cpp ├── point.h ├── projection.cpp ├── projection.h ├── sky.cpp ├── sky.h ├── spot.cpp └── spot.h ├── main └── pbrt.cpp ├── materials ├── disney.cpp ├── disney.h ├── fourier.cpp ├── fourier.h ├── glass.cpp ├── glass.h ├── hair.cpp ├── hair.h ├── kdsubsurface.cpp ├── kdsubsurface.h ├── matte.cpp ├── matte.h ├── metal.cpp ├── metal.h ├── mirror.cpp ├── mirror.h ├── mixmat.cpp ├── mixmat.h ├── plastic.cpp ├── plastic.h ├── substrate.cpp ├── substrate.h ├── subsurface.cpp ├── subsurface.h ├── translucent.cpp ├── translucent.h ├── uber.cpp └── uber.h ├── media ├── grid.cpp ├── grid.h ├── homogeneous.cpp ├── homogeneous.h ├── infinite.cpp ├── infinite.h ├── openvdbgrid.cpp └── openvdbgrid.h ├── samplers ├── halton.cpp ├── halton.h ├── maxmin.cpp ├── maxmin.h ├── random.cpp ├── random.h ├── sobol.cpp ├── sobol.h ├── stratified.cpp ├── stratified.h ├── zerotwosequence.cpp └── zerotwosequence.h ├── shapes ├── cone.cpp ├── cone.h ├── cuboid.cpp ├── cuboid.h ├── curve.cpp ├── curve.h ├── cylinder.cpp ├── cylinder.h ├── disk.cpp ├── disk.h ├── heightfield.cpp ├── heightfield.h ├── hyperboloid.cpp ├── hyperboloid.h ├── loopsubdiv.cpp ├── loopsubdiv.h ├── nurbs.cpp ├── nurbs.h ├── paraboloid.cpp ├── paraboloid.h ├── plymesh.cpp ├── plymesh.h ├── sphere.cpp ├── sphere.h ├── triangle.cpp └── triangle.h ├── tests ├── analytic_scenes.cpp ├── animatedtransform.cpp ├── bitops.cpp ├── bounds.cpp ├── bsdfs.cpp ├── fileutil.cpp ├── find_interval.cpp ├── fourierbsdf.cpp ├── fp_tests.cpp ├── gtest │ ├── gtest-all.cc │ ├── gtest.h │ └── gtest_main.cc ├── hair.cpp ├── hg.cpp ├── imageio.cpp ├── parallel.cpp ├── print.cpp ├── sampling.cpp ├── shapes.cpp └── spectrum.cpp ├── textures ├── bilerp.cpp ├── bilerp.h ├── checkerboard.cpp ├── checkerboard.h ├── constant.cpp ├── constant.h ├── dots.cpp ├── dots.h ├── fbm.cpp ├── fbm.h ├── imagemap.cpp ├── imagemap.h ├── marble.cpp ├── marble.h ├── mix.cpp ├── mix.h ├── scale.cpp ├── scale.h ├── uv.cpp ├── uv.h ├── windy.cpp ├── windy.h ├── wrinkled.cpp └── wrinkled.h └── tools ├── bsdftest.cpp ├── cyhair2pbrt.cpp ├── imgtool.cpp └── obj2pbrt.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/.gitignore -------------------------------------------------------------------------------- /pbrtv3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/Dockerfile -------------------------------------------------------------------------------- /pbrtv3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/LICENSE.txt -------------------------------------------------------------------------------- /pbrtv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/README.md -------------------------------------------------------------------------------- /pbrtv3/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/appveyor.yml -------------------------------------------------------------------------------- /pbrtv3/cmake/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/CMakeCache.txt -------------------------------------------------------------------------------- /pbrtv3/cmake/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/CPackConfig.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/CPackSourceConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/CPackSourceConfig.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/CTestTestfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/CTestTestfile.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindASan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindASan.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindMSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindMSan.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindOpenEXR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindOpenEXR.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindOpenEXRcustom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindOpenEXRcustom.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindOpenVDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindOpenVDB.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindSanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindSanitizers.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindTBB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindTBB.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindTSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindTSan.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/FindUBSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/FindUBSan.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/Findhdf5custom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/Findhdf5custom.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/Makefile -------------------------------------------------------------------------------- /pbrtv3/cmake/__FindOpenvdb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/__FindOpenvdb.cmake -------------------------------------------------------------------------------- /pbrtv3/cmake/asan-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/asan-wrapper -------------------------------------------------------------------------------- /pbrtv3/cmake/sanitize-helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/cmake/sanitize-helpers.cmake -------------------------------------------------------------------------------- /pbrtv3/exporters/cinema4d/PBRT Export/pbrt.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/exporters/cinema4d/PBRT Export/pbrt.pyp -------------------------------------------------------------------------------- /pbrtv3/exporters/cinema4d/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/exporters/cinema4d/readme.md -------------------------------------------------------------------------------- /pbrtv3/python/run_job.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | $1 > $2 & 3 | exit 0 4 | -------------------------------------------------------------------------------- /pbrtv3/python/run_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/python/run_parallel.py -------------------------------------------------------------------------------- /pbrtv3/src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/.clang-format -------------------------------------------------------------------------------- /pbrtv3/src/accelerators/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/accelerators/bvh.cpp -------------------------------------------------------------------------------- /pbrtv3/src/accelerators/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/accelerators/bvh.h -------------------------------------------------------------------------------- /pbrtv3/src/accelerators/kdtreeaccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/accelerators/kdtreeaccel.cpp -------------------------------------------------------------------------------- /pbrtv3/src/accelerators/kdtreeaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/accelerators/kdtreeaccel.h -------------------------------------------------------------------------------- /pbrtv3/src/cameras/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/environment.cpp -------------------------------------------------------------------------------- /pbrtv3/src/cameras/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/environment.h -------------------------------------------------------------------------------- /pbrtv3/src/cameras/orthographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/orthographic.cpp -------------------------------------------------------------------------------- /pbrtv3/src/cameras/orthographic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/orthographic.h -------------------------------------------------------------------------------- /pbrtv3/src/cameras/perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/perspective.cpp -------------------------------------------------------------------------------- /pbrtv3/src/cameras/perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/perspective.h -------------------------------------------------------------------------------- /pbrtv3/src/cameras/realistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/realistic.cpp -------------------------------------------------------------------------------- /pbrtv3/src/cameras/realistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/cameras/realistic.h -------------------------------------------------------------------------------- /pbrtv3/src/core/.sampling.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/.sampling.h.swp -------------------------------------------------------------------------------- /pbrtv3/src/core/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/api.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/api.h -------------------------------------------------------------------------------- /pbrtv3/src/core/bssrdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/bssrdf.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/bssrdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/bssrdf.h -------------------------------------------------------------------------------- /pbrtv3/src/core/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/camera.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/camera.h -------------------------------------------------------------------------------- /pbrtv3/src/core/efloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/efloat.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/efloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/efloat.h -------------------------------------------------------------------------------- /pbrtv3/src/core/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/error.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/error.h -------------------------------------------------------------------------------- /pbrtv3/src/core/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/fileutil.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/fileutil.h -------------------------------------------------------------------------------- /pbrtv3/src/core/film.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/film.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/film.h -------------------------------------------------------------------------------- /pbrtv3/src/core/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/filter.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/filter.h -------------------------------------------------------------------------------- /pbrtv3/src/core/floatfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/floatfile.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/floatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/floatfile.h -------------------------------------------------------------------------------- /pbrtv3/src/core/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/geometry.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/geometry.h -------------------------------------------------------------------------------- /pbrtv3/src/core/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/imageio.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/imageio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/imageio.h -------------------------------------------------------------------------------- /pbrtv3/src/core/integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/integrator.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/integrator.h -------------------------------------------------------------------------------- /pbrtv3/src/core/interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/interaction.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/interaction.h -------------------------------------------------------------------------------- /pbrtv3/src/core/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/interpolation.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/interpolation.h -------------------------------------------------------------------------------- /pbrtv3/src/core/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/light.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/light.h -------------------------------------------------------------------------------- /pbrtv3/src/core/lightdistrib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/lightdistrib.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/lightdistrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/lightdistrib.h -------------------------------------------------------------------------------- /pbrtv3/src/core/lowdiscrepancy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/lowdiscrepancy.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/lowdiscrepancy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/lowdiscrepancy.h -------------------------------------------------------------------------------- /pbrtv3/src/core/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/material.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/material.h -------------------------------------------------------------------------------- /pbrtv3/src/core/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/medium.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/medium.h -------------------------------------------------------------------------------- /pbrtv3/src/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/memory.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/memory.h -------------------------------------------------------------------------------- /pbrtv3/src/core/microfacet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/microfacet.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/microfacet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/microfacet.h -------------------------------------------------------------------------------- /pbrtv3/src/core/mipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/mipmap.h -------------------------------------------------------------------------------- /pbrtv3/src/core/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/parallel.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/parallel.h -------------------------------------------------------------------------------- /pbrtv3/src/core/paramset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/paramset.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/paramset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/paramset.h -------------------------------------------------------------------------------- /pbrtv3/src/core/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/parser.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/parser.h -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrt.h -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtlex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtlex.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtlex.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtlex.ll -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtparse.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtparse.h -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtparse.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtparse.output -------------------------------------------------------------------------------- /pbrtv3/src/core/pbrtparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/pbrtparse.y -------------------------------------------------------------------------------- /pbrtv3/src/core/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/port.h -------------------------------------------------------------------------------- /pbrtv3/src/core/primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/primitive.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/primitive.h -------------------------------------------------------------------------------- /pbrtv3/src/core/progressreporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/progressreporter.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/progressreporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/progressreporter.h -------------------------------------------------------------------------------- /pbrtv3/src/core/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/quaternion.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/quaternion.h -------------------------------------------------------------------------------- /pbrtv3/src/core/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/reflection.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/reflection.h -------------------------------------------------------------------------------- /pbrtv3/src/core/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/rng.h -------------------------------------------------------------------------------- /pbrtv3/src/core/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sampler.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sampler.h -------------------------------------------------------------------------------- /pbrtv3/src/core/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sampling.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sampling.h -------------------------------------------------------------------------------- /pbrtv3/src/core/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/scene.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/scene.h -------------------------------------------------------------------------------- /pbrtv3/src/core/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/shape.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/shape.h -------------------------------------------------------------------------------- /pbrtv3/src/core/sobolmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sobolmatrices.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/sobolmatrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/sobolmatrices.h -------------------------------------------------------------------------------- /pbrtv3/src/core/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/spectrum.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/spectrum.h -------------------------------------------------------------------------------- /pbrtv3/src/core/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/stats.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/stats.h -------------------------------------------------------------------------------- /pbrtv3/src/core/stringprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/stringprint.h -------------------------------------------------------------------------------- /pbrtv3/src/core/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/texture.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/texture.h -------------------------------------------------------------------------------- /pbrtv3/src/core/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/transform.cpp -------------------------------------------------------------------------------- /pbrtv3/src/core/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/transform.h -------------------------------------------------------------------------------- /pbrtv3/src/core/transmittance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/core/transmittance.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/ArHosekSkyModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/ArHosekSkyModel.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/ArHosekSkyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/ArHosekSkyModel.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/ArHosekSkyModelData_CIEXYZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/ArHosekSkyModelData_CIEXYZ.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/ArHosekSkyModelData_RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/ArHosekSkyModelData_RGB.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/ArHosekSkyModelData_Spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/ArHosekSkyModelData_Spectral.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/BuildSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/BuildSupport.py -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/CHANGES -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/ExampleSite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/ExampleSite.py -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/Field3D.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/Field3D.doxyfile -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/SConscript -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/SConstruct -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dinfo/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dinfo/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dinfo/SConscript -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dinfo/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dinfo/SConstruct -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dinfo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dinfo/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmakemip/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmakemip/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dmakemip/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmerge/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmerge/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dmerge/SConscript -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmerge/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dmerge/SConstruct -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dmerge/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dmerge/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dsample/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dsample/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dsample/SConscript -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dsample/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dsample/SConstruct -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/apps/f3dsample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/apps/f3dsample/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/cmake/FindILMBase.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/cmake/FindILMBase.cmake -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/ClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/ClassFactory.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/CoordSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/CoordSys.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Curve.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/DenseField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/DenseField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Documentation.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/EmptyField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/EmptyField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Exception.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Field.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Field3DFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Field3DFile.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Field3DFileHDF5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Field3DFileHDF5.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldCache.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldGroup.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldInterp.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldMapping.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldMappingIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldMappingIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldMetadata.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldSampler.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FieldWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FieldWrapper.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/FileSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/FileSequence.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Hdf5Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Hdf5Util.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/InitIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/InitIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Log.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MACField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MACField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MACFieldUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MACFieldUtil.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MIPBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MIPBase.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MIPField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MIPField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MIPInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MIPInterp.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MIPUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MIPUtil.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/MinMaxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/MinMaxUtil.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/OgawaFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/OgawaFwd.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/PatternMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/PatternMatch.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/PluginLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/PluginLoader.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/ProceduralField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/ProceduralField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/RefCount.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Resample.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/SparseDataReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/SparseDataReader.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/SparseField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/SparseField.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/SparseFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/SparseFile.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/SpiMathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/SpiMathLib.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/StdMathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/StdMathLib.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Traits.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/Types.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/export/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/export/ns.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/All.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/DenseFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/DenseFieldIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/Foundation.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/IArchive.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/IData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/IData.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/IGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/IGroup.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/IStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/IStreams.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/MACFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/MACFieldIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/MIPFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/MIPFieldIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OArchive.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OData.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OGroup.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OStream.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgIAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgIAttribute.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgIDataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgIDataset.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgIGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgIGroup.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgOAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgOAttribute.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgODataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgODataset.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgOGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgOGroup.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgUtil.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/OgawaUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/OgawaUtil.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/SparseFieldIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/SparseFieldIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/include/UtilFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/include/UtilFoundation.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/man/f3dinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/man/f3dinfo.1 -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/ogawaToF3D.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/ogawaToF3D.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/ClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/ClassFactory.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/DenseFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/DenseFieldIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Field.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Field3DFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Field3DFile.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Field3DFile.cpp.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Field3DFile.cpp.bk -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Field3DFileHDF5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Field3DFileHDF5.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FieldCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FieldCache.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FieldInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FieldInterp.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FieldMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FieldMapping.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FieldMappingIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FieldMappingIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FieldMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FieldMetadata.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/FileSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/FileSequence.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Hdf5Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Hdf5Util.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/IArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/IArchive.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/IData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/IData.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/IGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/IGroup.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/IStreams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/IStreams.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/InitIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/InitIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Log.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/MACFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/MACFieldIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/MIPFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/MIPFieldIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/MIPUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/MIPUtil.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/MinMaxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/MinMaxUtil.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OArchive.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OData.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OGroup.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OStream.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OgIGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OgIGroup.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/OgUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/OgUtil.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/PatternMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/PatternMatch.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/PluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/PluginLoader.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/ProceduralField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/ProceduralField.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/Resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/Resample.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/SparseFieldIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/SparseFieldIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/src/SparseFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/Field3D/src/SparseFile.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/test/misc_tests/lib_perf_test/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | src/*.o 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/test/misc_tests/lib_perf_test/Field3D_here/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.cpp 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/test/misc_tests/lib_perf_test/OpenVDB_here/.gitignore: -------------------------------------------------------------------------------- 1 | openvdb 2 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/Field3D/test/unit_tests/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.dblite 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/CONTRIBUTING.md -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/CONTRIBUTORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/INSTALL -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/Makefile.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/README.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/README.windows -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/aclocal.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/compile -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/config.guess -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/config.sub -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/configure -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/configure.ac -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/depcomp -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/doc/designstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/doc/designstyle.css -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/doc/glog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/doc/glog.html -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/glog-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/glog-config.cmake.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/google-glog.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/google-glog.sln -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/install-sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/libglog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/libglog.pc.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/ltmain.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ac_have_attribute.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ac_have_attribute.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ac_have_builtin_expect.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ac_have_builtin_expect.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ac_rwlock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ac_rwlock.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/google_namespace.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/google_namespace.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/libtool.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ltoptions.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ltsugar.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/ltversion.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/namespaces.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/namespaces.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/pc_from_ucontext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/pc_from_ucontext.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/stl_namespace.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/stl_namespace.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/m4/using_operator.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/m4/using_operator.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/missing -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/mkinstalldirs -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/changelog -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/control -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/copyright -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/docs -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/libgoogle-glog0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/deb/rules -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/rpm.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/packages/rpm/rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/packages/rpm/rpm.spec -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/base/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/base/commandlineflags.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/base/googleinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/base/googleinit.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/base/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/base/mutex.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/config.h.cmake.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/config.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/config_for_unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/config_for_unittests.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/demangle.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/demangle.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/demangle_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/demangle_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/demangle_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/demangle_unittest.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/demangle_unittest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/demangle_unittest.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/glog/log_severity.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/glog/logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/glog/logging.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/glog/raw_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/glog/raw_logging.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/glog/stl_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/glog/stl_logging.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/glog/vlog_is_on.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/glog/vlog_is_on.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/googletest.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging_striplog_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging_striplog_test.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging_striptest10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging_striptest10.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging_striptest2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging_striptest2.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/logging_unittest.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/logging_unittest.err -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/mock-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/mock-log.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/mock-log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/mock-log_test.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/raw_logging.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/signalhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/signalhandler.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace_generic-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace_generic-inl.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace_powerpc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace_powerpc-inl.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace_x86-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace_x86-inl.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stacktrace_x86_64-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stacktrace_x86_64-inl.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/stl_logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/stl_logging_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/symbolize.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/symbolize.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/symbolize_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/symbolize_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/utilities.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/utilities.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/utilities_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/utilities_unittest.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/vlog_is_on.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/vlog_is_on.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/windows/config.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/windows/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/windows/glog/logging.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/windows/port.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/windows/port.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/src/windows/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/glog/src/windows/preprocess.sh -------------------------------------------------------------------------------- /pbrtv3/src/ext/glog/test-driver: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/test-driver -------------------------------------------------------------------------------- /pbrtv3/src/ext/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/lodepng.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/lodepng.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/DtexToExr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/DtexToExr/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/DtexToExr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/DtexToExr/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/DtexToExr/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/DtexToExr/INSTALL -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/DtexToExr/NEWS: -------------------------------------------------------------------------------- 1 | Version 1.0.0 2 | - initial release 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/DtexToExr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/DtexToExr/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/Photoshop/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | CVS 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/Photoshop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/Photoshop/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/d_exr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/d_exr/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/d_exr/d_exr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/d_exr/d_exr.C -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/Contrib/d_exr/tst.rib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/Contrib/d_exr/tst.rib -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/eLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/eLut.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/half.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/half.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/halfExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/halfExport.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/halfLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/halfLimits.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Half/toFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Half/toFloat.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/HalfTest/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testArithmetic.h: -------------------------------------------------------------------------------- 1 | 2 | void testArithmetic (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testBitPatterns.h: -------------------------------------------------------------------------------- 1 | 2 | void testBitPatterns (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testClassification.h: -------------------------------------------------------------------------------- 1 | 2 | void testClassification (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testFunction.h: -------------------------------------------------------------------------------- 1 | 2 | void testFunction (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testLimits.h: -------------------------------------------------------------------------------- 1 | 2 | void testLimits (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/HalfTest/testSize.h: -------------------------------------------------------------------------------- 1 | 2 | void testSize (); 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/INSTALL: -------------------------------------------------------------------------------- 1 | See the README file for instructions on how to build IlmBase from 2 | source. 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/Iex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/Iex.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexBaseExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexBaseExc.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexErrnoExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexErrnoExc.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexExport.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexForward.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexMacros.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/IexMathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/IexMathExc.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Iex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Iex/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/IexTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/IexTest/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/IlmBase.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/IlmBase.pc.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathBox.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathExc.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathFun.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathGL.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathGLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathGLU.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathLine.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathMath.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathQuat.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/ImathVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/ImathVec.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Imath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Imath/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/LICENSE -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0: 2 | - Initial release 3 | 4 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/README.CVS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/README.OSX -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/README.cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/README.cmake.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/README.git -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/bootstrap -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/configure.ac -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/IlmBase/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/IlmBase/m4/threads.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/LICENSE -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/INSTALL -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfArray.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfIO.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfInt64.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfLut.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfLut.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfMisc.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfName.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRgba.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRle.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfRle.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfSimd.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfWav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfWav.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfWav.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfXdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfXdr.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfZip.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImf/ImfZip.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImfTest/invalid.exr: -------------------------------------------------------------------------------- 1 | this is not a valid EXR file 2 | 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/IlmImfUtil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/IlmImfUtil/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/LICENSE -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/NEWS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/OpenEXR.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/OpenEXR.pc.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/PATENTS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/README.CVS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/README.OSX -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/README.cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/README.cmake.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/README.git -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/bootstrap -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/configure.ac -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/doc/.cvsignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/doc/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/exr2aces/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/exr2aces/main.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/m4/threads.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR/openexr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR/openexr.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/INSTALL -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/LICENSE -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0 2 | - initial release 3 | -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/OpenEXR_Viewers/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/OpenEXR_Viewers/bootstrap -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/AUTHORS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/COPYING -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/INSTALL -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/LICENSE -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/Makefile.am -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/NEWS -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/PyIex/PyIex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/PyIex/PyIex.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/README.OSX -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/bootstrap -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/configure.ac -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/PyIlmBase/pyilmbase.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/PyIlmBase/pyilmbase.m4 -------------------------------------------------------------------------------- /pbrtv3/src/ext/openexr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/openexr/README.md -------------------------------------------------------------------------------- /pbrtv3/src/ext/rply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/rply.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/rply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/rply.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/targa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/targa.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/targa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/targa.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/.gitignore -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/ChangeLog -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/FAQ -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/INDEX -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/Makefile.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/adler32.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/as400/bndsrc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/as400/compile.clp -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/as400/readme.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/compress.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/configure -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/README.contrib -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/read.adb -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/readme.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/test.adb -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/zlib-thin.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/zlib-thin.adb -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/zlib-thin.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/zlib-thin.ads -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/asm686/README.686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/asm686/README.686 -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/asm686/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/asm686/match.S -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/blast.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/blast.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/blast/test.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/delphi/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/delphi/ZLib.pas -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/delphi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/delphi/readme.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/infback9/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/iostream/test.cpp -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/iostream3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/iostream3/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/iostream3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/iostream3/TODO -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/iostream3/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/iostream3/test.cc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/crypt.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/ioapi.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/ioapi.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/iowin32.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/iowin32.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/miniunz.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/minizip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/minizip.1 -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/minizip.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/mztools.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/mztools.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/unzip.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/unzip.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/zip.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/minizip/zip.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/pascal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/pascal/readme.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/puff.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/puff.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/pufftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/pufftest.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/untgz/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/crc32.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/crc32.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/deflate.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/deflate.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/README.examples -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/enough.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/gun.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/zlib_how.html -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/examples/zran.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/gzclose.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/gzguts.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/gzlib.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/gzread.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/gzwrite.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/infback.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inffast.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inffast.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inffixed.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inflate.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inflate.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inftrees.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/inftrees.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/make_vms.com -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/nintendods/Makefile -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/nintendods/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/README -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/descrip.mms -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/test/example.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/test/infcover.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/test/minigzip.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/treebuild.xml -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/trees.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/trees.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/uncompr.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/watcom/watcom_f.mak -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/watcom/watcom_l.mak -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/README-WIN32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/README-WIN32.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/zlib.def -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zconf.h.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zconf.h.included -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.3 -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.h -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.map -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib.pc.in -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zlib2ansi -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zutil.c -------------------------------------------------------------------------------- /pbrtv3/src/ext/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/ext/zlib/zutil.h -------------------------------------------------------------------------------- /pbrtv3/src/filters/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/box.cpp -------------------------------------------------------------------------------- /pbrtv3/src/filters/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/box.h -------------------------------------------------------------------------------- /pbrtv3/src/filters/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/gaussian.cpp -------------------------------------------------------------------------------- /pbrtv3/src/filters/gaussian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/gaussian.h -------------------------------------------------------------------------------- /pbrtv3/src/filters/mitchell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/mitchell.cpp -------------------------------------------------------------------------------- /pbrtv3/src/filters/mitchell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/mitchell.h -------------------------------------------------------------------------------- /pbrtv3/src/filters/sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/sinc.cpp -------------------------------------------------------------------------------- /pbrtv3/src/filters/sinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/sinc.h -------------------------------------------------------------------------------- /pbrtv3/src/filters/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/triangle.cpp -------------------------------------------------------------------------------- /pbrtv3/src/filters/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/filters/triangle.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/ao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/ao.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/ao.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/bdpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/bdpt.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/bdpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/bdpt.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/delta.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/delta.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/directlighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/directlighting.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/directlighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/directlighting.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/mlt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/mlt.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/mlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/mlt.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/nullpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/nullpath.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/nullpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/nullpath.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/path.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/path.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/spectral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/spectral.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/spectral.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/spectralmis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/spectralmis.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/spectralmis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/spectralmis.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/sppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/sppm.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/sppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/sppm.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/volpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/volpath.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/volpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/volpath.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/volpathmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/volpathmod.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/volpathmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/volpathmod.h -------------------------------------------------------------------------------- /pbrtv3/src/integrators/whitted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/whitted.cpp -------------------------------------------------------------------------------- /pbrtv3/src/integrators/whitted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/integrators/whitted.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/.diffuse.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/.diffuse.h.swp -------------------------------------------------------------------------------- /pbrtv3/src/lights/diffuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/diffuse.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/diffuse.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/distant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/distant.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/distant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/distant.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/goniometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/goniometric.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/goniometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/goniometric.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/infinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/infinite.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/infinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/infinite.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/point.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/point.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/projection.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/projection.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/sky.cpp: -------------------------------------------------------------------------------- 1 | #include "sky.h" -------------------------------------------------------------------------------- /pbrtv3/src/lights/sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/sky.h -------------------------------------------------------------------------------- /pbrtv3/src/lights/spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/spot.cpp -------------------------------------------------------------------------------- /pbrtv3/src/lights/spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/lights/spot.h -------------------------------------------------------------------------------- /pbrtv3/src/main/pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/main/pbrt.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/disney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/disney.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/disney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/disney.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/fourier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/fourier.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/fourier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/fourier.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/glass.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/glass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/glass.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/hair.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/hair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/hair.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/kdsubsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/kdsubsurface.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/kdsubsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/kdsubsurface.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/matte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/matte.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/matte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/matte.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/metal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/metal.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/metal.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/mirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/mirror.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/mirror.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/mixmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/mixmat.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/mixmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/mixmat.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/plastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/plastic.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/plastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/plastic.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/substrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/substrate.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/substrate.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/subsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/subsurface.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/subsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/subsurface.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/translucent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/translucent.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/translucent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/translucent.h -------------------------------------------------------------------------------- /pbrtv3/src/materials/uber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/uber.cpp -------------------------------------------------------------------------------- /pbrtv3/src/materials/uber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/materials/uber.h -------------------------------------------------------------------------------- /pbrtv3/src/media/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/grid.cpp -------------------------------------------------------------------------------- /pbrtv3/src/media/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/grid.h -------------------------------------------------------------------------------- /pbrtv3/src/media/homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/homogeneous.cpp -------------------------------------------------------------------------------- /pbrtv3/src/media/homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/homogeneous.h -------------------------------------------------------------------------------- /pbrtv3/src/media/infinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/infinite.cpp -------------------------------------------------------------------------------- /pbrtv3/src/media/infinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/infinite.h -------------------------------------------------------------------------------- /pbrtv3/src/media/openvdbgrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/openvdbgrid.cpp -------------------------------------------------------------------------------- /pbrtv3/src/media/openvdbgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/media/openvdbgrid.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/halton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/halton.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/halton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/halton.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/maxmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/maxmin.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/maxmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/maxmin.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/random.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/random.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/sobol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/sobol.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/sobol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/sobol.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/stratified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/stratified.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/stratified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/stratified.h -------------------------------------------------------------------------------- /pbrtv3/src/samplers/zerotwosequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/zerotwosequence.cpp -------------------------------------------------------------------------------- /pbrtv3/src/samplers/zerotwosequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/samplers/zerotwosequence.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cone.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cone.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cuboid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cuboid.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cuboid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cuboid.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/curve.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/curve.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cylinder.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/cylinder.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/disk.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/disk.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/heightfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/heightfield.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/heightfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/heightfield.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/hyperboloid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/hyperboloid.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/hyperboloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/hyperboloid.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/loopsubdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/loopsubdiv.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/loopsubdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/loopsubdiv.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/nurbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/nurbs.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/nurbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/nurbs.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/paraboloid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/paraboloid.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/paraboloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/paraboloid.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/plymesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/plymesh.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/plymesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/plymesh.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/sphere.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/sphere.h -------------------------------------------------------------------------------- /pbrtv3/src/shapes/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/triangle.cpp -------------------------------------------------------------------------------- /pbrtv3/src/shapes/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/shapes/triangle.h -------------------------------------------------------------------------------- /pbrtv3/src/tests/analytic_scenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/analytic_scenes.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/animatedtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/animatedtransform.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/bitops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/bitops.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/bounds.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/bsdfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/bsdfs.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/fileutil.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/find_interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/find_interval.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/fourierbsdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/fourierbsdf.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/fp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/fp_tests.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/gtest/gtest-all.cc -------------------------------------------------------------------------------- /pbrtv3/src/tests/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/gtest/gtest.h -------------------------------------------------------------------------------- /pbrtv3/src/tests/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/gtest/gtest_main.cc -------------------------------------------------------------------------------- /pbrtv3/src/tests/hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/hair.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/hg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/hg.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/imageio.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/parallel.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/print.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/sampling.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/shapes.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tests/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tests/spectrum.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/bilerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/bilerp.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/bilerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/bilerp.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/checkerboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/checkerboard.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/checkerboard.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/constant.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/constant.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/dots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/dots.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/dots.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/fbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/fbm.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/fbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/fbm.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/imagemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/imagemap.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/imagemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/imagemap.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/marble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/marble.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/marble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/marble.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/mix.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/mix.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/scale.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/scale.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/uv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/uv.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/uv.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/windy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/windy.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/windy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/windy.h -------------------------------------------------------------------------------- /pbrtv3/src/textures/wrinkled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/wrinkled.cpp -------------------------------------------------------------------------------- /pbrtv3/src/textures/wrinkled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/textures/wrinkled.h -------------------------------------------------------------------------------- /pbrtv3/src/tools/bsdftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tools/bsdftest.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tools/cyhair2pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tools/cyhair2pbrt.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tools/imgtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tools/imgtool.cpp -------------------------------------------------------------------------------- /pbrtv3/src/tools/obj2pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baileymiller/nullpath/HEAD/pbrtv3/src/tools/obj2pbrt.cpp --------------------------------------------------------------------------------