├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.txt ├── README.md ├── analytic_stochastic.py ├── appveyor.yml ├── cmake ├── FindASan.cmake ├── FindMSan.cmake ├── FindSanitizers.cmake ├── FindTSan.cmake ├── FindUBSan.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 ├── metrics.py ├── plot_runtime.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 │ ├── 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 │ ├── 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 ├── ext │ ├── ArHosekSkyModel.c │ ├── ArHosekSkyModel.h │ ├── ArHosekSkyModelData_CIEXYZ.h │ ├── ArHosekSkyModelData_RGB.h │ ├── ArHosekSkyModelData_Spectral.h │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ │ │ │ └── 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.vcproj │ │ │ │ │ └── EXRformat-sym.h │ │ │ └── d_exr │ │ │ │ ├── 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 │ │ │ │ └── threads.m4 │ │ ├── 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_dwaa_piz.exr │ │ │ │ ├── comp_dwaa_v1.exr │ │ │ │ ├── comp_dwaa_v2.exr │ │ │ │ ├── comp_dwab_piz.exr │ │ │ │ ├── comp_dwab_v1.exr │ │ │ │ ├── comp_dwab_v2.exr │ │ │ │ ├── comp_none.exr │ │ │ │ ├── comp_piz.exr │ │ │ │ ├── comp_rle.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 │ │ │ │ ├── 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 │ │ │ ├── build.log │ │ │ ├── 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 │ │ │ │ └── source_images │ │ │ │ │ ├── cubeMap.fig │ │ │ │ │ ├── dataDisplayWindow.fig │ │ │ │ │ ├── latlongMap.fig │ │ │ │ │ ├── screenwin.fig │ │ │ │ │ ├── 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 │ ├── ptex │ │ ├── .gitignore │ │ ├── .workonrc.products │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Ptex.spec.in │ │ ├── README │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile │ │ │ ├── Doxyfile_API_only │ │ │ ├── FilterFootprint.html │ │ │ ├── License.txt │ │ │ ├── README │ │ │ ├── apiintro.txt │ │ │ └── main.txt │ │ │ ├── ptex │ │ │ ├── CMakeLists.txt │ │ │ ├── PtexCache.cpp │ │ │ ├── PtexCache.h │ │ │ ├── PtexFilters.cpp │ │ │ ├── PtexHalf.cpp │ │ │ ├── PtexHalf.h │ │ │ ├── PtexHalfTableGen.cpp │ │ │ ├── PtexHalfTables.h │ │ │ ├── PtexHashMap.h │ │ │ ├── PtexIO.h │ │ │ ├── PtexInt.h │ │ │ ├── PtexMutex.h │ │ │ ├── PtexPlatform.h │ │ │ ├── PtexReader.cpp │ │ │ ├── PtexReader.h │ │ │ ├── PtexSeparableFilter.cpp │ │ │ ├── PtexSeparableFilter.h │ │ │ ├── PtexSeparableKernel.cpp │ │ │ ├── PtexSeparableKernel.h │ │ │ ├── PtexTriangleFilter.cpp │ │ │ ├── PtexTriangleFilter.h │ │ │ ├── PtexTriangleKernel.cpp │ │ │ ├── PtexTriangleKernel.h │ │ │ ├── PtexUtils.cpp │ │ │ ├── PtexUtils.h │ │ │ ├── PtexVersion.h │ │ │ ├── PtexWriter.cpp │ │ │ ├── PtexWriter.h │ │ │ └── Ptexture.h │ │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── compare_test.cmake │ │ │ ├── ftest.cpp │ │ │ ├── ftestok.dat │ │ │ ├── halftest.cpp │ │ │ ├── rtest.cpp │ │ │ ├── rtestok.dat │ │ │ ├── run_tests.py │ │ │ └── wtest.cpp │ │ │ └── utils │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ └── ptxinfo.cpp │ ├── 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 │ ├── directlighting.cpp │ ├── directlighting.h │ ├── ltc+shadow.cpp │ ├── ltc+shadow.h │ ├── ltc+silhouette+shadow.cpp │ ├── ltc+silhouette+shadow.h │ ├── ltc+silhouette.cpp │ ├── ltc+silhouette.h │ ├── ltc.cpp │ ├── ltc.h │ ├── ltc_coefficients.h │ ├── mlt.cpp │ ├── mlt.h │ ├── path.cpp │ ├── path.h │ ├── polygon.cpp │ ├── polygon.h │ ├── polygonclipping.cpp │ ├── polygonclipping.h │ ├── polygonutils.h │ ├── ratio.cpp │ ├── ratio.h │ ├── sppm.cpp │ ├── sppm.h │ ├── volpath.cpp │ ├── volpath.h │ ├── whitted.cpp │ └── whitted.h ├── lights │ ├── diffuse.cpp │ ├── diffuse.h │ ├── distant.cpp │ ├── distant.h │ ├── goniometric.cpp │ ├── goniometric.h │ ├── infinite.cpp │ ├── infinite.h │ ├── point.cpp │ ├── point.h │ ├── projection.cpp │ ├── projection.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 ├── 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 │ ├── 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 │ ├── parser.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 │ ├── ptex.cpp │ ├── ptex.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 └── visualize.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *png 3 | *jpg 4 | *pbrt 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/README.md -------------------------------------------------------------------------------- /analytic_stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/analytic_stochastic.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/FindASan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/FindASan.cmake -------------------------------------------------------------------------------- /cmake/FindMSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/FindMSan.cmake -------------------------------------------------------------------------------- /cmake/FindSanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/FindSanitizers.cmake -------------------------------------------------------------------------------- /cmake/FindTSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/FindTSan.cmake -------------------------------------------------------------------------------- /cmake/FindUBSan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/FindUBSan.cmake -------------------------------------------------------------------------------- /cmake/asan-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/asan-wrapper -------------------------------------------------------------------------------- /cmake/sanitize-helpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/cmake/sanitize-helpers.cmake -------------------------------------------------------------------------------- /exporters/cinema4d/PBRT Export/pbrt.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/exporters/cinema4d/PBRT Export/pbrt.pyp -------------------------------------------------------------------------------- /exporters/cinema4d/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/exporters/cinema4d/readme.md -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/metrics.py -------------------------------------------------------------------------------- /plot_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/plot_runtime.py -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/accelerators/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/accelerators/bvh.cpp -------------------------------------------------------------------------------- /src/accelerators/bvh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/accelerators/bvh.h -------------------------------------------------------------------------------- /src/accelerators/kdtreeaccel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/accelerators/kdtreeaccel.cpp -------------------------------------------------------------------------------- /src/accelerators/kdtreeaccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/accelerators/kdtreeaccel.h -------------------------------------------------------------------------------- /src/cameras/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/environment.cpp -------------------------------------------------------------------------------- /src/cameras/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/environment.h -------------------------------------------------------------------------------- /src/cameras/orthographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/orthographic.cpp -------------------------------------------------------------------------------- /src/cameras/orthographic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/orthographic.h -------------------------------------------------------------------------------- /src/cameras/perspective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/perspective.cpp -------------------------------------------------------------------------------- /src/cameras/perspective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/perspective.h -------------------------------------------------------------------------------- /src/cameras/realistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/realistic.cpp -------------------------------------------------------------------------------- /src/cameras/realistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/cameras/realistic.h -------------------------------------------------------------------------------- /src/core/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/api.cpp -------------------------------------------------------------------------------- /src/core/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/api.h -------------------------------------------------------------------------------- /src/core/bssrdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/bssrdf.cpp -------------------------------------------------------------------------------- /src/core/bssrdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/bssrdf.h -------------------------------------------------------------------------------- /src/core/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/camera.cpp -------------------------------------------------------------------------------- /src/core/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/camera.h -------------------------------------------------------------------------------- /src/core/efloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/efloat.cpp -------------------------------------------------------------------------------- /src/core/efloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/efloat.h -------------------------------------------------------------------------------- /src/core/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/error.cpp -------------------------------------------------------------------------------- /src/core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/error.h -------------------------------------------------------------------------------- /src/core/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/fileutil.cpp -------------------------------------------------------------------------------- /src/core/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/fileutil.h -------------------------------------------------------------------------------- /src/core/film.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/film.cpp -------------------------------------------------------------------------------- /src/core/film.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/film.h -------------------------------------------------------------------------------- /src/core/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/filter.cpp -------------------------------------------------------------------------------- /src/core/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/filter.h -------------------------------------------------------------------------------- /src/core/floatfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/floatfile.cpp -------------------------------------------------------------------------------- /src/core/floatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/floatfile.h -------------------------------------------------------------------------------- /src/core/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/geometry.cpp -------------------------------------------------------------------------------- /src/core/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/geometry.h -------------------------------------------------------------------------------- /src/core/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/imageio.cpp -------------------------------------------------------------------------------- /src/core/imageio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/imageio.h -------------------------------------------------------------------------------- /src/core/integrator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/integrator.cpp -------------------------------------------------------------------------------- /src/core/integrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/integrator.h -------------------------------------------------------------------------------- /src/core/interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/interaction.cpp -------------------------------------------------------------------------------- /src/core/interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/interaction.h -------------------------------------------------------------------------------- /src/core/interpolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/interpolation.cpp -------------------------------------------------------------------------------- /src/core/interpolation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/interpolation.h -------------------------------------------------------------------------------- /src/core/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/light.cpp -------------------------------------------------------------------------------- /src/core/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/light.h -------------------------------------------------------------------------------- /src/core/lightdistrib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/lightdistrib.cpp -------------------------------------------------------------------------------- /src/core/lightdistrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/lightdistrib.h -------------------------------------------------------------------------------- /src/core/lowdiscrepancy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/lowdiscrepancy.cpp -------------------------------------------------------------------------------- /src/core/lowdiscrepancy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/lowdiscrepancy.h -------------------------------------------------------------------------------- /src/core/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/material.cpp -------------------------------------------------------------------------------- /src/core/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/material.h -------------------------------------------------------------------------------- /src/core/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/medium.cpp -------------------------------------------------------------------------------- /src/core/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/medium.h -------------------------------------------------------------------------------- /src/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/memory.cpp -------------------------------------------------------------------------------- /src/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/memory.h -------------------------------------------------------------------------------- /src/core/microfacet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/microfacet.cpp -------------------------------------------------------------------------------- /src/core/microfacet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/microfacet.h -------------------------------------------------------------------------------- /src/core/mipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/mipmap.h -------------------------------------------------------------------------------- /src/core/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/parallel.cpp -------------------------------------------------------------------------------- /src/core/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/parallel.h -------------------------------------------------------------------------------- /src/core/paramset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/paramset.cpp -------------------------------------------------------------------------------- /src/core/paramset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/paramset.h -------------------------------------------------------------------------------- /src/core/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/parser.cpp -------------------------------------------------------------------------------- /src/core/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/parser.h -------------------------------------------------------------------------------- /src/core/pbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/pbrt.h -------------------------------------------------------------------------------- /src/core/primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/primitive.cpp -------------------------------------------------------------------------------- /src/core/primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/primitive.h -------------------------------------------------------------------------------- /src/core/progressreporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/progressreporter.cpp -------------------------------------------------------------------------------- /src/core/progressreporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/progressreporter.h -------------------------------------------------------------------------------- /src/core/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/quaternion.cpp -------------------------------------------------------------------------------- /src/core/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/quaternion.h -------------------------------------------------------------------------------- /src/core/reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/reflection.cpp -------------------------------------------------------------------------------- /src/core/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/reflection.h -------------------------------------------------------------------------------- /src/core/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/rng.h -------------------------------------------------------------------------------- /src/core/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sampler.cpp -------------------------------------------------------------------------------- /src/core/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sampler.h -------------------------------------------------------------------------------- /src/core/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sampling.cpp -------------------------------------------------------------------------------- /src/core/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sampling.h -------------------------------------------------------------------------------- /src/core/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/scene.cpp -------------------------------------------------------------------------------- /src/core/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/scene.h -------------------------------------------------------------------------------- /src/core/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/shape.cpp -------------------------------------------------------------------------------- /src/core/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/shape.h -------------------------------------------------------------------------------- /src/core/sobolmatrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sobolmatrices.cpp -------------------------------------------------------------------------------- /src/core/sobolmatrices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/sobolmatrices.h -------------------------------------------------------------------------------- /src/core/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/spectrum.cpp -------------------------------------------------------------------------------- /src/core/spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/spectrum.h -------------------------------------------------------------------------------- /src/core/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/stats.cpp -------------------------------------------------------------------------------- /src/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/stats.h -------------------------------------------------------------------------------- /src/core/stringprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/stringprint.h -------------------------------------------------------------------------------- /src/core/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/texture.cpp -------------------------------------------------------------------------------- /src/core/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/texture.h -------------------------------------------------------------------------------- /src/core/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/transform.cpp -------------------------------------------------------------------------------- /src/core/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/core/transform.h -------------------------------------------------------------------------------- /src/ext/ArHosekSkyModel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ArHosekSkyModel.c -------------------------------------------------------------------------------- /src/ext/ArHosekSkyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ArHosekSkyModel.h -------------------------------------------------------------------------------- /src/ext/ArHosekSkyModelData_CIEXYZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ArHosekSkyModelData_CIEXYZ.h -------------------------------------------------------------------------------- /src/ext/ArHosekSkyModelData_RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ArHosekSkyModelData_RGB.h -------------------------------------------------------------------------------- /src/ext/ArHosekSkyModelData_Spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ArHosekSkyModelData_Spectral.h -------------------------------------------------------------------------------- /src/ext/glog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/.gitignore -------------------------------------------------------------------------------- /src/ext/glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/AUTHORS -------------------------------------------------------------------------------- /src/ext/glog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/glog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/ext/glog/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/CONTRIBUTORS -------------------------------------------------------------------------------- /src/ext/glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/COPYING -------------------------------------------------------------------------------- /src/ext/glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/ChangeLog -------------------------------------------------------------------------------- /src/ext/glog/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/INSTALL -------------------------------------------------------------------------------- /src/ext/glog/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/Makefile.am -------------------------------------------------------------------------------- /src/ext/glog/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/Makefile.in -------------------------------------------------------------------------------- /src/ext/glog/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ext/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/README -------------------------------------------------------------------------------- /src/ext/glog/README.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/README.windows -------------------------------------------------------------------------------- /src/ext/glog/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/aclocal.m4 -------------------------------------------------------------------------------- /src/ext/glog/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/compile -------------------------------------------------------------------------------- /src/ext/glog/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/config.guess -------------------------------------------------------------------------------- /src/ext/glog/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/config.sub -------------------------------------------------------------------------------- /src/ext/glog/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/configure -------------------------------------------------------------------------------- /src/ext/glog/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/configure.ac -------------------------------------------------------------------------------- /src/ext/glog/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/depcomp -------------------------------------------------------------------------------- /src/ext/glog/doc/designstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/doc/designstyle.css -------------------------------------------------------------------------------- /src/ext/glog/doc/glog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/doc/glog.html -------------------------------------------------------------------------------- /src/ext/glog/glog-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/glog-config.cmake.in -------------------------------------------------------------------------------- /src/ext/glog/google-glog.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/google-glog.sln -------------------------------------------------------------------------------- /src/ext/glog/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/install-sh -------------------------------------------------------------------------------- /src/ext/glog/libglog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/libglog.pc.in -------------------------------------------------------------------------------- /src/ext/glog/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/ltmain.sh -------------------------------------------------------------------------------- /src/ext/glog/m4/ac_have_attribute.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ac_have_attribute.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/ac_have_builtin_expect.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ac_have_builtin_expect.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/ac_rwlock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ac_rwlock.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/google_namespace.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/google_namespace.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/libtool.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/namespaces.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/namespaces.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/pc_from_ucontext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/pc_from_ucontext.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/stl_namespace.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/stl_namespace.m4 -------------------------------------------------------------------------------- /src/ext/glog/m4/using_operator.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/m4/using_operator.m4 -------------------------------------------------------------------------------- /src/ext/glog/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/missing -------------------------------------------------------------------------------- /src/ext/glog/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/mkinstalldirs -------------------------------------------------------------------------------- /src/ext/glog/packages/deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb.sh -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/README -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/changelog -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/control -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/copyright -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/docs -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/libgoogle-glog0.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /src/ext/glog/packages/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/deb/rules -------------------------------------------------------------------------------- /src/ext/glog/packages/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/rpm.sh -------------------------------------------------------------------------------- /src/ext/glog/packages/rpm/rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/packages/rpm/rpm.spec -------------------------------------------------------------------------------- /src/ext/glog/src/base/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/base/commandlineflags.h -------------------------------------------------------------------------------- /src/ext/glog/src/base/googleinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/base/googleinit.h -------------------------------------------------------------------------------- /src/ext/glog/src/base/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/base/mutex.h -------------------------------------------------------------------------------- /src/ext/glog/src/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/config.h.cmake.in -------------------------------------------------------------------------------- /src/ext/glog/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/config.h.in -------------------------------------------------------------------------------- /src/ext/glog/src/config_for_unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/config_for_unittests.h -------------------------------------------------------------------------------- /src/ext/glog/src/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/demangle.cc -------------------------------------------------------------------------------- /src/ext/glog/src/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/demangle.h -------------------------------------------------------------------------------- /src/ext/glog/src/demangle_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/demangle_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/demangle_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/demangle_unittest.sh -------------------------------------------------------------------------------- /src/ext/glog/src/demangle_unittest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/demangle_unittest.txt -------------------------------------------------------------------------------- /src/ext/glog/src/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/glog/log_severity.h -------------------------------------------------------------------------------- /src/ext/glog/src/glog/logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/glog/logging.h.in -------------------------------------------------------------------------------- /src/ext/glog/src/glog/raw_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/glog/raw_logging.h.in -------------------------------------------------------------------------------- /src/ext/glog/src/glog/stl_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/glog/stl_logging.h.in -------------------------------------------------------------------------------- /src/ext/glog/src/glog/vlog_is_on.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/glog/vlog_is_on.h.in -------------------------------------------------------------------------------- /src/ext/glog/src/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/googletest.h -------------------------------------------------------------------------------- /src/ext/glog/src/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging.cc -------------------------------------------------------------------------------- /src/ext/glog/src/logging_striplog_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_striplog_test.sh -------------------------------------------------------------------------------- /src/ext/glog/src/logging_striptest10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_striptest10.cc -------------------------------------------------------------------------------- /src/ext/glog/src/logging_striptest2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_striptest2.cc -------------------------------------------------------------------------------- /src/ext/glog/src/logging_striptest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_striptest_main.cc -------------------------------------------------------------------------------- /src/ext/glog/src/logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/logging_unittest.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/logging_unittest.err -------------------------------------------------------------------------------- /src/ext/glog/src/mock-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/mock-log.h -------------------------------------------------------------------------------- /src/ext/glog/src/mock-log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/mock-log_test.cc -------------------------------------------------------------------------------- /src/ext/glog/src/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/raw_logging.cc -------------------------------------------------------------------------------- /src/ext/glog/src/signalhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/signalhandler.cc -------------------------------------------------------------------------------- /src/ext/glog/src/signalhandler_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/signalhandler_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/signalhandler_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/signalhandler_unittest.sh -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace.h -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_generic-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_generic-inl.h -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_libunwind-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_libunwind-inl.h -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_powerpc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_powerpc-inl.h -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_x86-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_x86-inl.h -------------------------------------------------------------------------------- /src/ext/glog/src/stacktrace_x86_64-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stacktrace_x86_64-inl.h -------------------------------------------------------------------------------- /src/ext/glog/src/stl_logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/stl_logging_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/symbolize.cc -------------------------------------------------------------------------------- /src/ext/glog/src/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/symbolize.h -------------------------------------------------------------------------------- /src/ext/glog/src/symbolize_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/symbolize_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/utilities.cc -------------------------------------------------------------------------------- /src/ext/glog/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/utilities.h -------------------------------------------------------------------------------- /src/ext/glog/src/utilities_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/utilities_unittest.cc -------------------------------------------------------------------------------- /src/ext/glog/src/vlog_is_on.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/vlog_is_on.cc -------------------------------------------------------------------------------- /src/ext/glog/src/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/config.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/glog/log_severity.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/glog/logging.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/glog/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/glog/raw_logging.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/glog/stl_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/glog/stl_logging.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/glog/vlog_is_on.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/port.cc -------------------------------------------------------------------------------- /src/ext/glog/src/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/port.h -------------------------------------------------------------------------------- /src/ext/glog/src/windows/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/glog/src/windows/preprocess.sh -------------------------------------------------------------------------------- /src/ext/glog/test-driver: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.14/test-driver -------------------------------------------------------------------------------- /src/ext/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/lodepng.cpp -------------------------------------------------------------------------------- /src/ext/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/lodepng.h -------------------------------------------------------------------------------- /src/ext/openexr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/.gitignore -------------------------------------------------------------------------------- /src/ext/openexr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/AUTHORS -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/COPYING -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/ChangeLog -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/INSTALL -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/NEWS: -------------------------------------------------------------------------------- 1 | Version 1.0.0 2 | - initial release 3 | -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/README -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/DtexToExr/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/DtexToExr/bootstrap -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/Photoshop/.cvsignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | CVS 3 | -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/Photoshop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/Photoshop/README -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/d_exr/d_exr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/d_exr/d_exr.C -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/d_exr/rendermn.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/d_exr/rendermn.ini -------------------------------------------------------------------------------- /src/ext/openexr/Contrib/d_exr/tst.rib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/Contrib/d_exr/tst.rib -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/.gitignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/AUTHORS -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/COPYING -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ChangeLog -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/eLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/eLut.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/half.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/half.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/halfExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/halfExport.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/halfFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/halfFunction.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/halfLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/halfLimits.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Half/toFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Half/toFloat.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/HalfTest/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/HalfTest/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/HalfTest/main.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testArithmetic.h: -------------------------------------------------------------------------------- 1 | 2 | void testArithmetic (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testBitPatterns.h: -------------------------------------------------------------------------------- 1 | 2 | void testBitPatterns (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testClassification.h: -------------------------------------------------------------------------------- 1 | 2 | void testClassification (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/HalfTest/testError.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testFunction.h: -------------------------------------------------------------------------------- 1 | 2 | void testFunction (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testLimits.h: -------------------------------------------------------------------------------- 1 | 2 | void testLimits (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/HalfTest/testSize.h: -------------------------------------------------------------------------------- 1 | 2 | void testSize (); 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/INSTALL: -------------------------------------------------------------------------------- 1 | See the README file for instructions on how to build IlmBase from 2 | source. 3 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/Iex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/Iex.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexBaseExc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexBaseExc.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexBaseExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexBaseExc.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexErrnoExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexErrnoExc.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexExport.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexForward.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexMacros.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexMathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexMathExc.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/IexNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/IexNamespace.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Iex/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Iex/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IexMath/IexMathFpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IexMath/IexMathFpu.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IexMath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IexMath/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IexTest/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IexTest/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IexTest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IexTest/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IexTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IexTest/main.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IlmBase.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IlmBase.pc.in -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/IlmThread/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/IlmThread/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathBox.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathBox.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathBoxAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathBoxAlgo.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathColor.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathEuler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathEuler.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathExc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathExc.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathExport.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathForward.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathFrame.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathFrustum.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathFun.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathFun.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathGL.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathGLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathGLU.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathInt64.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathLimits.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathLine.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathMath.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathMatrix.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathPlane.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathQuat.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathRandom.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathRoots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathRoots.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathShear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathShear.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathShear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathShear.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathSphere.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathVec.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathVec.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/ImathVecAlgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/ImathVecAlgo.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Imath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Imath/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/main.cpp -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/testBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/testBox.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/testFun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/testFun.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/testQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/testQuat.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/ImathTest/testVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/ImathTest/testVec.h -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/LICENSE -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0: 2 | - Initial release 3 | 4 | -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README.CVS -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README.OSX -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README.cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README.cmake.txt -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README.git -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/README.namespacing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/README.namespacing -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/bootstrap -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/config/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/configure.ac -------------------------------------------------------------------------------- /src/ext/openexr/IlmBase/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/IlmBase/m4/threads.m4 -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/.gitignore -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/AUTHORS -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/COPYING -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/ChangeLog -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/INSTALL -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfAcesFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfAcesFile.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfArray.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfConvert.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfEnvmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfEnvmap.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfEnvmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfEnvmap.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfExport.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfFastHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfFastHuf.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfForward.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfHeader.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfHeader.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfHuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfHuf.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfIO.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfIO.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfInt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfInt64.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfKeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfKeyCode.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfLut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfLut.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfLut.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfMisc.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfMisc.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfName.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfPartType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfPartType.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRational.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRgba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRgba.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRgbaFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRgbaFile.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRgbaYca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRgbaYca.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRle.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfRle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfRle.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfSimd.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfStdIO.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfTestFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfTestFile.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfTimeCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfTimeCode.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfVersion.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfWav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfWav.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfWav.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfXdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfXdr.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfZip.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/ImfZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/ImfZip.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImf/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/invalid.exr: -------------------------------------------------------------------------------- 1 | this is not a valid EXR file 2 | 3 | -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/main.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testHuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testHuf.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testLut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testLut.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testRle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testRle.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testWav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testWav.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testXdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testXdr.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfTest/testYca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfTest/testYca.h -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/IlmImfUtil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/IlmImfUtil/README -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/LICENSE -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/NEWS -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/OpenEXR.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/OpenEXR.pc.in -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/PATENTS -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/README -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/README.CVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/README.CVS -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/README.OSX -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/README.cmake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/README.cmake.txt -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/README.git -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/bootstrap -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/build.log -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/configure.ac -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/doc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/doc/.cvsignore -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/doc/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/exr2aces/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/exr2aces/main.cpp -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/m4/threads.m4 -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR/openexr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR/openexr.m4 -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/AUTHORS -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/COPYING -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/ChangeLog -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/INSTALL -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/LICENSE -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/NEWS: -------------------------------------------------------------------------------- 1 | Version 0.9.0 2 | - initial release 3 | -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/README -------------------------------------------------------------------------------- /src/ext/openexr/OpenEXR_Viewers/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/OpenEXR_Viewers/bootstrap -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/AUTHORS -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/COPYING -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/ChangeLog -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/INSTALL -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/LICENSE -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/NEWS -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/PyIex/PyIex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/PyIex/PyIex.cpp -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/PyIex/PyIex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/PyIex/PyIex.h -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/PyIlmBase.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/PyIlmBase.pc.in -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/README -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/README.OSX -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/bootstrap -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/configure.ac -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/doc/Makefile.am -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/m4/threads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/m4/threads.m4 -------------------------------------------------------------------------------- /src/ext/openexr/PyIlmBase/pyilmbase.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/PyIlmBase/pyilmbase.m4 -------------------------------------------------------------------------------- /src/ext/openexr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/openexr/README -------------------------------------------------------------------------------- /src/ext/ptex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/.gitignore -------------------------------------------------------------------------------- /src/ext/ptex/.workonrc.products: -------------------------------------------------------------------------------- 1 | Ptex 2 | -------------------------------------------------------------------------------- /src/ext/ptex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/ptex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/Makefile -------------------------------------------------------------------------------- /src/ext/ptex/Ptex.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/Ptex.spec.in -------------------------------------------------------------------------------- /src/ext/ptex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/README -------------------------------------------------------------------------------- /src/ext/ptex/src/.gitignore: -------------------------------------------------------------------------------- 1 | /config.mak 2 | -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/.gitignore -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/Doxyfile -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/Doxyfile_API_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/Doxyfile_API_only -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/FilterFootprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/FilterFootprint.html -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/License.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/README -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/apiintro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/apiintro.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/doc/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/doc/main.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexCache.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexCache.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexFilters.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexHalf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexHalf.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexHalf.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexHalfTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexHalfTables.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexHashMap.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexIO.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexInt.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexMutex.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexPlatform.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexReader.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexReader.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexUtils.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexUtils.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexVersion.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexWriter.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/PtexWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/PtexWriter.h -------------------------------------------------------------------------------- /src/ext/ptex/src/ptex/Ptexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/ptex/Ptexture.h -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/.gitignore -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/compare_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/compare_test.cmake -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/ftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/ftest.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/ftestok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/ftestok.dat -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/halftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/halftest.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/rtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/rtest.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/rtestok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/rtestok.dat -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/run_tests.py -------------------------------------------------------------------------------- /src/ext/ptex/src/tests/wtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/tests/wtest.cpp -------------------------------------------------------------------------------- /src/ext/ptex/src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | ptxinfo 2 | -------------------------------------------------------------------------------- /src/ext/ptex/src/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/utils/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/ptex/src/utils/ptxinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/ptex/src/utils/ptxinfo.cpp -------------------------------------------------------------------------------- /src/ext/rply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/rply.cpp -------------------------------------------------------------------------------- /src/ext/rply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/rply.h -------------------------------------------------------------------------------- /src/ext/targa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/targa.cpp -------------------------------------------------------------------------------- /src/ext/targa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/targa.h -------------------------------------------------------------------------------- /src/ext/zlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/.gitignore -------------------------------------------------------------------------------- /src/ext/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /src/ext/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/ChangeLog -------------------------------------------------------------------------------- /src/ext/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/FAQ -------------------------------------------------------------------------------- /src/ext/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/INDEX -------------------------------------------------------------------------------- /src/ext/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/Makefile.in -------------------------------------------------------------------------------- /src/ext/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/README -------------------------------------------------------------------------------- /src/ext/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/adler32.c -------------------------------------------------------------------------------- /src/ext/zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /src/ext/zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /src/ext/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/as400/bndsrc -------------------------------------------------------------------------------- /src/ext/zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/as400/compile.clp -------------------------------------------------------------------------------- /src/ext/zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/as400/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /src/ext/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/compress.c -------------------------------------------------------------------------------- /src/ext/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/configure -------------------------------------------------------------------------------- /src/ext/zlib/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/README.contrib -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/buffer_demo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/buffer_demo.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/read.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/test.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib-streams.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib-streams.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib-streams.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib-streams.ads -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib-thin.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib-thin.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib-thin.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib-thin.ads -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /src/ext/zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /src/ext/zlib/contrib/amd64/amd64-match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/amd64/amd64-match.S -------------------------------------------------------------------------------- /src/ext/zlib/contrib/asm686/README.686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/asm686/README.686 -------------------------------------------------------------------------------- /src/ext/zlib/contrib/asm686/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/asm686/match.S -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/README -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/blast.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/blast.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /src/ext/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/blast/test.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/delphi/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/delphi/ZLib.pas -------------------------------------------------------------------------------- /src/ext/zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/delphi/ZLibConst.pas -------------------------------------------------------------------------------- /src/ext/zlib/contrib/delphi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/delphi/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/delphi/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/delphi/zlibd32.mak -------------------------------------------------------------------------------- /src/ext/zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /src/ext/zlib/contrib/dotzlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/dotzlib/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/README -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/infback9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/infback9.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/infback9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/infback9.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/inffix9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/inffix9.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/inflate9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/inflate9.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/inftree9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/inftree9.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/infback9/inftree9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/infback9/inftree9.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/inflate86/inffas86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/inflate86/inffas86.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/inflate86/inffast.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/inflate86/inffast.S -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream/test.cpp -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream/zfstream.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream2/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream2/zstream.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream3/README -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream3/TODO -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream3/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream3/test.cc -------------------------------------------------------------------------------- /src/ext/zlib/contrib/iostream3/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/iostream3/zfstream.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx64/bld_ml64.bat -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx64/gvmat64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx64/gvmat64.asm -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx64/inffas8664.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx64/inffas8664.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx64/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx86/bld_ml32.bat -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx86/inffas32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx86/inffas32.asm -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx86/match686.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx86/match686.asm -------------------------------------------------------------------------------- /src/ext/zlib/contrib/masmx86/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/masmx86/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/Makefile.am -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/configure.ac -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/crypt.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/ioapi.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/ioapi.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/iowin32.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/iowin32.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/make_vms.com -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/miniunz.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/miniunzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/miniunzip.1 -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/minizip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/minizip.1 -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/minizip.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/mztools.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/mztools.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/unzip.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/unzip.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/zip.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/minizip/zip.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/pascal/example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/pascal/example.pas -------------------------------------------------------------------------------- /src/ext/zlib/contrib/pascal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/pascal/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/pascal/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/pascal/zlibd32.mak -------------------------------------------------------------------------------- /src/ext/zlib/contrib/pascal/zlibpas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/pascal/zlibpas.pas -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/README -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/puff.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/puff.h -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/pufftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/pufftest.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /src/ext/zlib/contrib/testzlib/testzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/testzlib/testzlib.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/untgz/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/contrib/untgz/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/untgz/Makefile.msc -------------------------------------------------------------------------------- /src/ext/zlib/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /src/ext/zlib/contrib/vstudio/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/vstudio/readme.txt -------------------------------------------------------------------------------- /src/ext/zlib/contrib/vstudio/vc10/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/vstudio/vc10/zlib.rc -------------------------------------------------------------------------------- /src/ext/zlib/contrib/vstudio/vc11/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/vstudio/vc11/zlib.rc -------------------------------------------------------------------------------- /src/ext/zlib/contrib/vstudio/vc9/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/contrib/vstudio/vc9/zlib.rc -------------------------------------------------------------------------------- /src/ext/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/crc32.c -------------------------------------------------------------------------------- /src/ext/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/crc32.h -------------------------------------------------------------------------------- /src/ext/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/deflate.c -------------------------------------------------------------------------------- /src/ext/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/deflate.h -------------------------------------------------------------------------------- /src/ext/zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /src/ext/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /src/ext/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /src/ext/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /src/ext/zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /src/ext/zlib/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/README.examples -------------------------------------------------------------------------------- /src/ext/zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/enough.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/gun.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /src/ext/zlib/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/zlib_how.html -------------------------------------------------------------------------------- /src/ext/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /src/ext/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/examples/zran.c -------------------------------------------------------------------------------- /src/ext/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/gzclose.c -------------------------------------------------------------------------------- /src/ext/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/gzguts.h -------------------------------------------------------------------------------- /src/ext/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/gzlib.c -------------------------------------------------------------------------------- /src/ext/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/gzread.c -------------------------------------------------------------------------------- /src/ext/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/ext/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/infback.c -------------------------------------------------------------------------------- /src/ext/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inffast.c -------------------------------------------------------------------------------- /src/ext/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inffast.h -------------------------------------------------------------------------------- /src/ext/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inffixed.h -------------------------------------------------------------------------------- /src/ext/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inflate.c -------------------------------------------------------------------------------- /src/ext/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inflate.h -------------------------------------------------------------------------------- /src/ext/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inftrees.c -------------------------------------------------------------------------------- /src/ext/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/inftrees.h -------------------------------------------------------------------------------- /src/ext/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/make_vms.com -------------------------------------------------------------------------------- /src/ext/zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /src/ext/zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /src/ext/zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /src/ext/zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /src/ext/zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /src/ext/zlib/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/nintendods/Makefile -------------------------------------------------------------------------------- /src/ext/zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/nintendods/README -------------------------------------------------------------------------------- /src/ext/zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /src/ext/zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /src/ext/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/README -------------------------------------------------------------------------------- /src/ext/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/descrip.mms -------------------------------------------------------------------------------- /src/ext/zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /src/ext/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /src/ext/zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /src/ext/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /src/ext/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/test/example.c -------------------------------------------------------------------------------- /src/ext/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/test/infcover.c -------------------------------------------------------------------------------- /src/ext/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/test/minigzip.c -------------------------------------------------------------------------------- /src/ext/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/treebuild.xml -------------------------------------------------------------------------------- /src/ext/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/trees.c -------------------------------------------------------------------------------- /src/ext/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/trees.h -------------------------------------------------------------------------------- /src/ext/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/uncompr.c -------------------------------------------------------------------------------- /src/ext/zlib/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/watcom/watcom_f.mak -------------------------------------------------------------------------------- /src/ext/zlib/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/watcom/watcom_l.mak -------------------------------------------------------------------------------- /src/ext/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /src/ext/zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /src/ext/zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /src/ext/zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /src/ext/zlib/win32/README-WIN32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/README-WIN32.txt -------------------------------------------------------------------------------- /src/ext/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /src/ext/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/zlib.def -------------------------------------------------------------------------------- /src/ext/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /src/ext/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /src/ext/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zconf.h.in -------------------------------------------------------------------------------- /src/ext/zlib/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zconf.h.included -------------------------------------------------------------------------------- /src/ext/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.3 -------------------------------------------------------------------------------- /src/ext/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /src/ext/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.h -------------------------------------------------------------------------------- /src/ext/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.map -------------------------------------------------------------------------------- /src/ext/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /src/ext/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib.pc.in -------------------------------------------------------------------------------- /src/ext/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zlib2ansi -------------------------------------------------------------------------------- /src/ext/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zutil.c -------------------------------------------------------------------------------- /src/ext/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/ext/zlib/zutil.h -------------------------------------------------------------------------------- /src/filters/box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/box.cpp -------------------------------------------------------------------------------- /src/filters/box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/box.h -------------------------------------------------------------------------------- /src/filters/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/gaussian.cpp -------------------------------------------------------------------------------- /src/filters/gaussian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/gaussian.h -------------------------------------------------------------------------------- /src/filters/mitchell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/mitchell.cpp -------------------------------------------------------------------------------- /src/filters/mitchell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/mitchell.h -------------------------------------------------------------------------------- /src/filters/sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/sinc.cpp -------------------------------------------------------------------------------- /src/filters/sinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/sinc.h -------------------------------------------------------------------------------- /src/filters/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/triangle.cpp -------------------------------------------------------------------------------- /src/filters/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/filters/triangle.h -------------------------------------------------------------------------------- /src/integrators/ao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ao.cpp -------------------------------------------------------------------------------- /src/integrators/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ao.h -------------------------------------------------------------------------------- /src/integrators/bdpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/bdpt.cpp -------------------------------------------------------------------------------- /src/integrators/bdpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/bdpt.h -------------------------------------------------------------------------------- /src/integrators/directlighting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/directlighting.cpp -------------------------------------------------------------------------------- /src/integrators/directlighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/directlighting.h -------------------------------------------------------------------------------- /src/integrators/ltc+shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+shadow.cpp -------------------------------------------------------------------------------- /src/integrators/ltc+shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+shadow.h -------------------------------------------------------------------------------- /src/integrators/ltc+silhouette+shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+silhouette+shadow.cpp -------------------------------------------------------------------------------- /src/integrators/ltc+silhouette+shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+silhouette+shadow.h -------------------------------------------------------------------------------- /src/integrators/ltc+silhouette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+silhouette.cpp -------------------------------------------------------------------------------- /src/integrators/ltc+silhouette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc+silhouette.h -------------------------------------------------------------------------------- /src/integrators/ltc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc.cpp -------------------------------------------------------------------------------- /src/integrators/ltc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc.h -------------------------------------------------------------------------------- /src/integrators/ltc_coefficients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ltc_coefficients.h -------------------------------------------------------------------------------- /src/integrators/mlt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/mlt.cpp -------------------------------------------------------------------------------- /src/integrators/mlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/mlt.h -------------------------------------------------------------------------------- /src/integrators/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/path.cpp -------------------------------------------------------------------------------- /src/integrators/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/path.h -------------------------------------------------------------------------------- /src/integrators/polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/polygon.cpp -------------------------------------------------------------------------------- /src/integrators/polygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/polygon.h -------------------------------------------------------------------------------- /src/integrators/polygonclipping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/polygonclipping.cpp -------------------------------------------------------------------------------- /src/integrators/polygonclipping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/polygonclipping.h -------------------------------------------------------------------------------- /src/integrators/polygonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/polygonutils.h -------------------------------------------------------------------------------- /src/integrators/ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ratio.cpp -------------------------------------------------------------------------------- /src/integrators/ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/ratio.h -------------------------------------------------------------------------------- /src/integrators/sppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/sppm.cpp -------------------------------------------------------------------------------- /src/integrators/sppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/sppm.h -------------------------------------------------------------------------------- /src/integrators/volpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/volpath.cpp -------------------------------------------------------------------------------- /src/integrators/volpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/volpath.h -------------------------------------------------------------------------------- /src/integrators/whitted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/whitted.cpp -------------------------------------------------------------------------------- /src/integrators/whitted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/integrators/whitted.h -------------------------------------------------------------------------------- /src/lights/diffuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/diffuse.cpp -------------------------------------------------------------------------------- /src/lights/diffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/diffuse.h -------------------------------------------------------------------------------- /src/lights/distant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/distant.cpp -------------------------------------------------------------------------------- /src/lights/distant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/distant.h -------------------------------------------------------------------------------- /src/lights/goniometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/goniometric.cpp -------------------------------------------------------------------------------- /src/lights/goniometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/goniometric.h -------------------------------------------------------------------------------- /src/lights/infinite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/infinite.cpp -------------------------------------------------------------------------------- /src/lights/infinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/infinite.h -------------------------------------------------------------------------------- /src/lights/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/point.cpp -------------------------------------------------------------------------------- /src/lights/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/point.h -------------------------------------------------------------------------------- /src/lights/projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/projection.cpp -------------------------------------------------------------------------------- /src/lights/projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/projection.h -------------------------------------------------------------------------------- /src/lights/spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/spot.cpp -------------------------------------------------------------------------------- /src/lights/spot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/lights/spot.h -------------------------------------------------------------------------------- /src/main/pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/main/pbrt.cpp -------------------------------------------------------------------------------- /src/materials/disney.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/disney.cpp -------------------------------------------------------------------------------- /src/materials/disney.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/disney.h -------------------------------------------------------------------------------- /src/materials/fourier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/fourier.cpp -------------------------------------------------------------------------------- /src/materials/fourier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/fourier.h -------------------------------------------------------------------------------- /src/materials/glass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/glass.cpp -------------------------------------------------------------------------------- /src/materials/glass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/glass.h -------------------------------------------------------------------------------- /src/materials/hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/hair.cpp -------------------------------------------------------------------------------- /src/materials/hair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/hair.h -------------------------------------------------------------------------------- /src/materials/kdsubsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/kdsubsurface.cpp -------------------------------------------------------------------------------- /src/materials/kdsubsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/kdsubsurface.h -------------------------------------------------------------------------------- /src/materials/matte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/matte.cpp -------------------------------------------------------------------------------- /src/materials/matte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/matte.h -------------------------------------------------------------------------------- /src/materials/metal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/metal.cpp -------------------------------------------------------------------------------- /src/materials/metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/metal.h -------------------------------------------------------------------------------- /src/materials/mirror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/mirror.cpp -------------------------------------------------------------------------------- /src/materials/mirror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/mirror.h -------------------------------------------------------------------------------- /src/materials/mixmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/mixmat.cpp -------------------------------------------------------------------------------- /src/materials/mixmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/mixmat.h -------------------------------------------------------------------------------- /src/materials/plastic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/plastic.cpp -------------------------------------------------------------------------------- /src/materials/plastic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/plastic.h -------------------------------------------------------------------------------- /src/materials/substrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/substrate.cpp -------------------------------------------------------------------------------- /src/materials/substrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/substrate.h -------------------------------------------------------------------------------- /src/materials/subsurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/subsurface.cpp -------------------------------------------------------------------------------- /src/materials/subsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/subsurface.h -------------------------------------------------------------------------------- /src/materials/translucent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/translucent.cpp -------------------------------------------------------------------------------- /src/materials/translucent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/translucent.h -------------------------------------------------------------------------------- /src/materials/uber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/uber.cpp -------------------------------------------------------------------------------- /src/materials/uber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/materials/uber.h -------------------------------------------------------------------------------- /src/media/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/media/grid.cpp -------------------------------------------------------------------------------- /src/media/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/media/grid.h -------------------------------------------------------------------------------- /src/media/homogeneous.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/media/homogeneous.cpp -------------------------------------------------------------------------------- /src/media/homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/media/homogeneous.h -------------------------------------------------------------------------------- /src/samplers/halton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/halton.cpp -------------------------------------------------------------------------------- /src/samplers/halton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/halton.h -------------------------------------------------------------------------------- /src/samplers/maxmin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/maxmin.cpp -------------------------------------------------------------------------------- /src/samplers/maxmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/maxmin.h -------------------------------------------------------------------------------- /src/samplers/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/random.cpp -------------------------------------------------------------------------------- /src/samplers/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/random.h -------------------------------------------------------------------------------- /src/samplers/sobol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/sobol.cpp -------------------------------------------------------------------------------- /src/samplers/sobol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/sobol.h -------------------------------------------------------------------------------- /src/samplers/stratified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/stratified.cpp -------------------------------------------------------------------------------- /src/samplers/stratified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/stratified.h -------------------------------------------------------------------------------- /src/samplers/zerotwosequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/zerotwosequence.cpp -------------------------------------------------------------------------------- /src/samplers/zerotwosequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/samplers/zerotwosequence.h -------------------------------------------------------------------------------- /src/shapes/cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/cone.cpp -------------------------------------------------------------------------------- /src/shapes/cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/cone.h -------------------------------------------------------------------------------- /src/shapes/curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/curve.cpp -------------------------------------------------------------------------------- /src/shapes/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/curve.h -------------------------------------------------------------------------------- /src/shapes/cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/cylinder.cpp -------------------------------------------------------------------------------- /src/shapes/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/cylinder.h -------------------------------------------------------------------------------- /src/shapes/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/disk.cpp -------------------------------------------------------------------------------- /src/shapes/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/disk.h -------------------------------------------------------------------------------- /src/shapes/heightfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/heightfield.cpp -------------------------------------------------------------------------------- /src/shapes/heightfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/heightfield.h -------------------------------------------------------------------------------- /src/shapes/hyperboloid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/hyperboloid.cpp -------------------------------------------------------------------------------- /src/shapes/hyperboloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/hyperboloid.h -------------------------------------------------------------------------------- /src/shapes/loopsubdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/loopsubdiv.cpp -------------------------------------------------------------------------------- /src/shapes/loopsubdiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/loopsubdiv.h -------------------------------------------------------------------------------- /src/shapes/nurbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/nurbs.cpp -------------------------------------------------------------------------------- /src/shapes/nurbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/nurbs.h -------------------------------------------------------------------------------- /src/shapes/paraboloid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/paraboloid.cpp -------------------------------------------------------------------------------- /src/shapes/paraboloid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/paraboloid.h -------------------------------------------------------------------------------- /src/shapes/plymesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/plymesh.cpp -------------------------------------------------------------------------------- /src/shapes/plymesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/plymesh.h -------------------------------------------------------------------------------- /src/shapes/sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/sphere.cpp -------------------------------------------------------------------------------- /src/shapes/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/sphere.h -------------------------------------------------------------------------------- /src/shapes/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/triangle.cpp -------------------------------------------------------------------------------- /src/shapes/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/shapes/triangle.h -------------------------------------------------------------------------------- /src/tests/analytic_scenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/analytic_scenes.cpp -------------------------------------------------------------------------------- /src/tests/animatedtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/animatedtransform.cpp -------------------------------------------------------------------------------- /src/tests/bitops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/bitops.cpp -------------------------------------------------------------------------------- /src/tests/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/bounds.cpp -------------------------------------------------------------------------------- /src/tests/bsdfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/bsdfs.cpp -------------------------------------------------------------------------------- /src/tests/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/fileutil.cpp -------------------------------------------------------------------------------- /src/tests/find_interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/find_interval.cpp -------------------------------------------------------------------------------- /src/tests/fourierbsdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/fourierbsdf.cpp -------------------------------------------------------------------------------- /src/tests/fp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/fp_tests.cpp -------------------------------------------------------------------------------- /src/tests/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/gtest/gtest-all.cc -------------------------------------------------------------------------------- /src/tests/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/gtest/gtest.h -------------------------------------------------------------------------------- /src/tests/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/gtest/gtest_main.cc -------------------------------------------------------------------------------- /src/tests/hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/hair.cpp -------------------------------------------------------------------------------- /src/tests/hg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/hg.cpp -------------------------------------------------------------------------------- /src/tests/imageio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/imageio.cpp -------------------------------------------------------------------------------- /src/tests/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/parallel.cpp -------------------------------------------------------------------------------- /src/tests/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/parser.cpp -------------------------------------------------------------------------------- /src/tests/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/print.cpp -------------------------------------------------------------------------------- /src/tests/sampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/sampling.cpp -------------------------------------------------------------------------------- /src/tests/shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/shapes.cpp -------------------------------------------------------------------------------- /src/tests/spectrum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tests/spectrum.cpp -------------------------------------------------------------------------------- /src/textures/bilerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/bilerp.cpp -------------------------------------------------------------------------------- /src/textures/bilerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/bilerp.h -------------------------------------------------------------------------------- /src/textures/checkerboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/checkerboard.cpp -------------------------------------------------------------------------------- /src/textures/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/checkerboard.h -------------------------------------------------------------------------------- /src/textures/constant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/constant.cpp -------------------------------------------------------------------------------- /src/textures/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/constant.h -------------------------------------------------------------------------------- /src/textures/dots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/dots.cpp -------------------------------------------------------------------------------- /src/textures/dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/dots.h -------------------------------------------------------------------------------- /src/textures/fbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/fbm.cpp -------------------------------------------------------------------------------- /src/textures/fbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/fbm.h -------------------------------------------------------------------------------- /src/textures/imagemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/imagemap.cpp -------------------------------------------------------------------------------- /src/textures/imagemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/imagemap.h -------------------------------------------------------------------------------- /src/textures/marble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/marble.cpp -------------------------------------------------------------------------------- /src/textures/marble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/marble.h -------------------------------------------------------------------------------- /src/textures/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/mix.cpp -------------------------------------------------------------------------------- /src/textures/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/mix.h -------------------------------------------------------------------------------- /src/textures/ptex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/ptex.cpp -------------------------------------------------------------------------------- /src/textures/ptex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/ptex.h -------------------------------------------------------------------------------- /src/textures/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/scale.cpp -------------------------------------------------------------------------------- /src/textures/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/scale.h -------------------------------------------------------------------------------- /src/textures/uv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/uv.cpp -------------------------------------------------------------------------------- /src/textures/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/uv.h -------------------------------------------------------------------------------- /src/textures/windy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/windy.cpp -------------------------------------------------------------------------------- /src/textures/windy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/windy.h -------------------------------------------------------------------------------- /src/textures/wrinkled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/wrinkled.cpp -------------------------------------------------------------------------------- /src/textures/wrinkled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/textures/wrinkled.h -------------------------------------------------------------------------------- /src/tools/bsdftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tools/bsdftest.cpp -------------------------------------------------------------------------------- /src/tools/cyhair2pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tools/cyhair2pbrt.cpp -------------------------------------------------------------------------------- /src/tools/imgtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tools/imgtool.cpp -------------------------------------------------------------------------------- /src/tools/obj2pbrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/src/tools/obj2pbrt.cpp -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AakashKT/analytic_ss_cpu/HEAD/visualize.py --------------------------------------------------------------------------------