├── .readthedocs.yml ├── .travis-coverity-scan-build.sh ├── .travis.yml.disabled ├── Documentation ├── README.md ├── build.sh ├── genPropertiesReference.py ├── old_doc │ ├── Guide │ │ ├── Makefile │ │ ├── ofxExample1_Basics.adoc │ │ ├── ofxExample2_Invert.adoc │ │ ├── ofxExample3_Gain.adoc │ │ ├── ofxExample4_Saturation.adoc │ │ ├── ofxExample5_Circle.adoc │ │ └── ofxProgrammingGuide.adoc │ └── Reference │ │ ├── Makefile │ │ ├── apiChanges_1_2_Chapter.xml │ │ ├── clipPreferencesChapter.xml │ │ ├── extractPropertyDefinitions.perl │ │ ├── formating.pm │ │ ├── getSuiteReference.perl │ │ ├── header.xml │ │ ├── imageEffectActionsChapter.xml │ │ ├── imageEffectsAPIChapter.xml │ │ ├── interactActionsChapter.xml │ │ ├── ofxHostStruct.xml │ │ ├── ofxImageEffectSuiteReference.xml │ │ ├── ofxInteractSuiteReference.xml │ │ ├── ofxLoadingSequence.xml │ │ ├── ofxMemorySuiteReference.xml │ │ ├── ofxMessageSuiteV1Reference.xml │ │ ├── ofxMessageSuiteV2Reference.xml │ │ ├── ofxOpenGLRenderSuiteReference.xml │ │ ├── ofxPackaging.xml │ │ ├── ofxParameterChapter.xml │ │ ├── ofxParametersSuiteReference.xml │ │ ├── ofxParametricParamReference.xml │ │ ├── ofxPluginStruct.xml │ │ ├── ofxProgrammingGuide.xml │ │ ├── ofxProgrammingReference.xml │ │ ├── ofxProgressSuiteReference.xml │ │ ├── ofxPropertiesByObject.xml │ │ ├── ofxPropertiesReference.xml │ │ ├── ofxPropertySuiteReference.xml │ │ ├── ofxThreadingSuiteReference.xml │ │ ├── ofxTimeLineSuiteReference.xml │ │ └── statusCodesChapter.xml ├── pipreq.txt ├── sourceforge │ └── index.html └── sources │ ├── Guide │ ├── .rst │ ├── Code │ │ ├── Example1 │ │ │ ├── Makefile │ │ │ ├── NMakefile │ │ │ └── basics.cpp │ │ ├── Example2 │ │ │ ├── Makefile │ │ │ ├── NMakefile │ │ │ └── invert.cpp │ │ ├── Example3 │ │ │ ├── Makefile │ │ │ ├── NMakefile │ │ │ └── gain.cpp │ │ ├── Example4 │ │ │ ├── Makefile │ │ │ ├── NMakefile │ │ │ └── saturation.cpp │ │ ├── Example5 │ │ │ ├── Makefile │ │ │ ├── NMakefile │ │ │ └── circle.cpp │ │ ├── Guide.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Makefile │ │ ├── MakefileCommon │ │ ├── NMakefile │ │ └── NMakefileCommon │ ├── Pics │ │ ├── GainControlPanelNuke.jpg │ │ ├── SaturationNuke.jpg │ │ ├── dataLayout.jpg │ │ ├── imagePlane.jpg │ │ ├── kinder720.jpg │ │ ├── kinderCanonical.jpg │ │ ├── kinderProxy.jpg │ │ ├── kinderScout.jpg │ │ └── pelican.jpg │ ├── README.txt │ ├── TODO.txt │ ├── index.rst │ ├── ofxExample1_Basics.rst │ ├── ofxExample2_Invert.rst │ ├── ofxExample3_Gain.rst │ ├── ofxExample4_Saturation.rst │ ├── ofxExample5_Circle.rst │ └── ofxExamples.rst │ ├── Reference │ ├── apiChanges_1_2_Chapter.rst │ ├── index.rst │ ├── ofxClipPreferences.rst │ ├── ofxCoordSystem.rst │ ├── ofxCoreAPI.rst │ ├── ofxHostStruct.rst │ ├── ofxImageClip.rst │ ├── ofxImageEffectAPI.rst │ ├── ofxImageEffectActions.rst │ ├── ofxImageEffectContexts.rst │ ├── ofxInteractActions.rst │ ├── ofxInteracts.rst │ ├── ofxLoadingSequence.rst │ ├── ofxPackaging.rst │ ├── ofxParameter.rst │ ├── ofxPluginStruct.rst │ ├── ofxProcessingArch.rst │ ├── ofxPropertiesByObject.rst │ ├── ofxPropertiesReference.rst │ ├── ofxRendering.rst │ ├── ofxStatusCodes.rst │ ├── ofxStructure.rst │ ├── ofxThreadSafety.rst │ └── suites │ │ ├── ofxImageEffectSuiteReference.rst │ │ ├── ofxInteractSuiteReference.rst │ │ ├── ofxMemorySuiteReference.rst │ │ ├── ofxMessageSuiteV1Reference.rst │ │ ├── ofxMessageSuiteV2Reference.rst │ │ ├── ofxOpenGLRenderSuiteReference.rst │ │ ├── ofxParametersSuiteReference.rst │ │ ├── ofxParametricParamReference.rst │ │ ├── ofxProgressSuiteReference.rst │ │ ├── ofxPropertySuiteReference.rst │ │ ├── ofxSuiteReference.rst │ │ ├── ofxThreadingSuiteReference.rst │ │ └── ofxTimeLineSuiteReference.rst │ ├── conf.py │ └── index.rst ├── Examples ├── Basic │ ├── Basic_2005.sln │ ├── Basic_2005.vcproj │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ └── basic.cpp ├── Cuda │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ ├── Readme.txt │ ├── cuda.cpp │ └── kernel.cu ├── Custom │ ├── Custom_2005.sln │ ├── Custom_2005.vcproj │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ └── custom.cpp ├── DepthConverter │ ├── DepthConverter_2005.sln │ ├── DepthConverter_2005.vcproj │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ └── depthConverter.cpp ├── Examples.xcodeproj │ └── project.pbxproj ├── Invert │ ├── Info.plist │ ├── Invert_2005.sln │ ├── Invert_2005.vcproj │ ├── Makefile │ ├── MakefileOSX │ └── invert.cpp ├── Makefile ├── Makefile.master ├── MakefileOSX ├── OpenCL │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ ├── Readme.txt │ └── oclplugin.cpp ├── OpenGL │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ └── opengl.cpp ├── Overlay │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ ├── Overlay_2005.sln │ ├── Overlay_2005.vcproj │ └── overlay.cpp ├── README.txt ├── Readme-Cuda-OpenCL.txt ├── Rectangle │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ ├── Rectangle_2005.sln │ ├── Rectangle_2005.vcproj │ └── rectangle.cpp ├── Test │ ├── Info.plist │ ├── Makefile │ ├── MakefileOSX │ ├── Test_2005.sln │ ├── Test_2005.vcproj │ ├── ofxLog.H │ ├── ofxLog.cpp │ └── testProperties.cpp ├── XML │ └── example.xml └── include │ ├── linuxSymbols │ ├── ofxUtilities.H │ ├── osxDeploy.sh │ └── osxSymbols ├── HostSupport ├── BUILDING ├── HostSupport.sln ├── HostSupport.vcproj ├── HostSupport.xcodeproj │ └── project.pbxproj ├── Makefile ├── README ├── TTD ├── examples │ ├── CacheDemo.vcproj │ ├── Makefile │ ├── cacheDemo.cpp │ ├── hostDemo.cpp │ ├── hostDemo.vcproj │ ├── hostDemoClipInstance.cpp │ ├── hostDemoClipInstance.h │ ├── hostDemoEffectInstance.cpp │ ├── hostDemoEffectInstance.h │ ├── hostDemoHostDescriptor.cpp │ ├── hostDemoHostDescriptor.h │ ├── hostDemoParamInstance.cpp │ └── hostDemoParamInstance.h ├── expat-2.4.3 │ ├── AUTHORS │ ├── CMake.README │ ├── CMakeLists.txt │ ├── COPYING │ ├── Changes │ ├── ConfigureChecks.cmake │ ├── Makefile.am │ ├── Makefile.in │ ├── README.md │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── buildconf.sh │ ├── cmake │ │ ├── autotools │ │ │ ├── expat-config-version.cmake.in │ │ │ ├── expat-noconfig__linux.cmake.in │ │ │ ├── expat-noconfig__macos.cmake.in │ │ │ ├── expat-noconfig__windows.cmake.in │ │ │ ├── expat-package-init.cmake │ │ │ └── expat.cmake │ │ ├── expat-config.cmake.in │ │ └── mingw-toolchain.cmake │ ├── configure │ ├── configure.ac │ ├── conftools │ │ ├── ar-lib │ │ ├── ax-append-compile-flags.m4 │ │ ├── ax-append-flag.m4 │ │ ├── ax-append-link-flags.m4 │ │ ├── ax-check-compile-flag.m4 │ │ ├── ax-check-link-flag.m4 │ │ ├── ax-require-defined.m4 │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── expat.m4 │ │ ├── expatcfg-compiler-supports-visibility.m4 │ │ ├── get-version.sh │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── test-driver │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ok.min.css │ │ ├── reference.html │ │ ├── style.css │ │ ├── valid-xhtml10.png │ │ ├── xmlwf.1 │ │ └── xmlwf.xml │ ├── examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── elements.c │ │ └── outline.c │ ├── expat.pc.cmake │ ├── expat.pc.in │ ├── expat_config.h.cmake │ ├── expat_config.h.in │ ├── fix-xmltest-log.sh │ ├── fuzz │ │ ├── xml_parse_fuzzer.c │ │ └── xml_parsebuffer_fuzzer.c │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.h │ │ ├── expat_external.h │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── libexpat.def │ │ ├── libexpatw.def │ │ ├── nametab.h │ │ ├── siphash.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── run.sh.in │ ├── test-driver-wrapper.sh │ ├── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── benchmark │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ └── benchmark.c │ │ ├── chardata.c │ │ ├── chardata.h │ │ ├── memcheck.c │ │ ├── memcheck.h │ │ ├── minicheck.c │ │ ├── minicheck.h │ │ ├── runtests.c │ │ ├── runtestspp.cpp │ │ ├── structdata.c │ │ ├── structdata.h │ │ ├── udiffer.py │ │ ├── xmltest.log.expected │ │ └── xmltest.sh │ ├── win32 │ │ ├── MANIFEST.txt │ │ ├── README.txt │ │ ├── build_expat_iss.bat │ │ └── expat.iss │ └── xmlwf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codepage.c │ │ ├── codepage.h │ │ ├── ct.c │ │ ├── filemap.h │ │ ├── readfilemap.c │ │ ├── unixfilemap.c │ │ ├── win32filemap.c │ │ ├── xmlfile.c │ │ ├── xmlfile.h │ │ ├── xmlmime.c │ │ ├── xmlmime.h │ │ ├── xmltchar.h │ │ ├── xmlwf.c │ │ ├── xmlwf_helpgen.py │ │ └── xmlwf_helpgen.sh ├── include │ ├── ofxhBinary.h │ ├── ofxhClip.h │ ├── ofxhHost.h │ ├── ofxhImageEffect.h │ ├── ofxhImageEffectAPI.h │ ├── ofxhInteract.h │ ├── ofxhMemory.h │ ├── ofxhParam.h │ ├── ofxhPlatformDefines.h │ ├── ofxhPluginAPICache.h │ ├── ofxhPluginCache.h │ ├── ofxhProgress.h │ ├── ofxhPropertySuite.h │ ├── ofxhTimeLine.h │ ├── ofxhUtilities.h │ └── ofxhXml.h └── src │ ├── ofxhBinary.cpp │ ├── ofxhClip.cpp │ ├── ofxhHost.cpp │ ├── ofxhImageEffect.cpp │ ├── ofxhImageEffectAPI.cpp │ ├── ofxhInteract.cpp │ ├── ofxhMemory.cpp │ ├── ofxhParam.cpp │ ├── ofxhPluginAPICache.cpp │ ├── ofxhPluginCache.cpp │ ├── ofxhPropertySuite.cpp │ └── ofxhUtilities.cpp ├── LICENSE ├── LICENSE.md ├── Makefile ├── README.md ├── Support ├── LICENSE ├── Library │ ├── .gdb_history │ ├── Makefile │ ├── ofxSupport.dsp │ ├── ofxsCore.cpp │ ├── ofxsHWNDInteract.cpp │ ├── ofxsImageEffect.cpp │ ├── ofxsInteract.cpp │ ├── ofxsLog.cpp │ ├── ofxsMultiThread.cpp │ ├── ofxsParams.cpp │ ├── ofxsProperty.cpp │ ├── ofxsPropertyValidation.cpp │ ├── ofxsSupportPrivate.h │ ├── ofxsupport.dsw │ └── ofxsupport.vcproj ├── OSXStaticLoader │ ├── Makefile │ └── pluginLoader.cpp ├── Plugins │ ├── Basic │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── basic.cpp │ │ ├── basic.dsp │ │ ├── basic.dsw │ │ └── basic.vcproj │ ├── ExamplePlugs.sln │ ├── Field │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── field.cpp │ │ └── field.vcproj │ ├── Generator │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── noise.cpp │ │ ├── noise.dsp │ │ ├── noise.dsw │ │ ├── noise.vcproj │ │ ├── randomGenerator.H │ │ └── randomGenerator.cpp │ ├── Invert │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── invert.cpp │ │ └── invert.vcproj │ ├── Makefile │ ├── Makefile.master │ ├── MultiBundle │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── multibundle.vcproj │ │ ├── multibundle1.cpp │ │ └── multibundle2.cpp │ ├── MultiplyGPU │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── MultiplyCUDA.cu │ │ ├── MultiplyGPU.cpp │ │ ├── MultiplyGPU.h │ │ └── MultiplyOpenCL.cpp │ ├── Retimer │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── retimer.cpp │ │ ├── retimer.dsp │ │ ├── retimer.dsw │ │ └── retimer.vcproj │ ├── Tester │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── Tester.cpp │ │ └── Tester.vcproj │ ├── Transition │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── crossFade.cpp │ │ ├── crossFade.dsp │ │ ├── crossFade.dsw │ │ └── crossFade.vcproj │ └── include │ │ ├── README │ │ ├── ofxsImageBlender.H │ │ └── ofxsProcessing.H ├── PropTester │ ├── Info.plist │ ├── Makefile │ ├── propTester.cpp │ ├── propTester.dsp │ ├── propTester.dsw │ └── propTester.vcproj ├── README ├── Support.xcodeproj │ └── project.pbxproj ├── TODO ├── include │ ├── linuxSymbols │ ├── ofxsCore.h │ ├── ofxsHWNDInteract.h │ ├── ofxsImageEffect.h │ ├── ofxsInteract.h │ ├── ofxsLog.h │ ├── ofxsMemory.h │ ├── ofxsMessage.h │ ├── ofxsMultiThread.h │ ├── ofxsParam.h │ ├── osxDeploy.sh │ └── osxSymbols └── support.doxy ├── include ├── DocSrc │ ├── footer.html │ ├── ofx_footer.html │ ├── ofx_header.html │ └── ofx_style.css ├── OFX_navheader.png ├── OFX_small.png ├── nuke │ ├── camera.h │ ├── fnOfxExtensions.h │ └── fnPublicOfxExtensions.h ├── ofx.doxy ├── ofx.dtd ├── ofxCore.h ├── ofxDialog.h ├── ofxImageEffect.h ├── ofxInteract.h ├── ofxKeySyms.h ├── ofxMemory.h ├── ofxMessage.h ├── ofxMultiThread.h ├── ofxNatron.h ├── ofxOld.h ├── ofxOpenGLRender.h ├── ofxParam.h ├── ofxParametricParam.h ├── ofxPixels.h ├── ofxProgress.h ├── ofxProperty.h ├── ofxSonyVegas.h ├── ofxStyle.css ├── ofxTimeLine.h └── tuttle │ └── ofxReadWrite.h ├── readme-ofxa.md ├── release-notes.md ├── scripts ├── genRelease ├── genSupportDoc ├── genSupportRelease └── uploadRelease └── website └── htdocs ├── Documentation └── index.html ├── OFXLogo.gif └── index.html /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis-coverity-scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/.travis-coverity-scan-build.sh -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/build.sh -------------------------------------------------------------------------------- /Documentation/genPropertiesReference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/genPropertiesReference.py -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/Makefile -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxExample1_Basics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxExample1_Basics.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxExample2_Invert.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxExample2_Invert.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxExample3_Gain.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxExample3_Gain.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxExample4_Saturation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxExample4_Saturation.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxExample5_Circle.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxExample5_Circle.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Guide/ofxProgrammingGuide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Guide/ofxProgrammingGuide.adoc -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/Makefile -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/apiChanges_1_2_Chapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/apiChanges_1_2_Chapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/clipPreferencesChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/clipPreferencesChapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/extractPropertyDefinitions.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/extractPropertyDefinitions.perl -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/formating.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/formating.pm -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/getSuiteReference.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/getSuiteReference.perl -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/header.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/imageEffectActionsChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/imageEffectActionsChapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/imageEffectsAPIChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/imageEffectsAPIChapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/interactActionsChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/interactActionsChapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxHostStruct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxHostStruct.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxImageEffectSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxImageEffectSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxInteractSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxInteractSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxLoadingSequence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxLoadingSequence.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxMemorySuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxMemorySuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxMessageSuiteV1Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxMessageSuiteV1Reference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxMessageSuiteV2Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxMessageSuiteV2Reference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxOpenGLRenderSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxOpenGLRenderSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxPackaging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxPackaging.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxParameterChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxParameterChapter.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxParametersSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxParametersSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxParametricParamReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxParametricParamReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxPluginStruct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxPluginStruct.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxProgrammingGuide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxProgrammingGuide.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxProgrammingReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxProgrammingReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxProgressSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxProgressSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxPropertiesByObject.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxPropertiesByObject.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxPropertiesReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxPropertiesReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxPropertySuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxPropertySuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxThreadingSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxThreadingSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/ofxTimeLineSuiteReference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/ofxTimeLineSuiteReference.xml -------------------------------------------------------------------------------- /Documentation/old_doc/Reference/statusCodesChapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/old_doc/Reference/statusCodesChapter.xml -------------------------------------------------------------------------------- /Documentation/pipreq.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | sphinxjp.themes.basicstrap 3 | -------------------------------------------------------------------------------- /Documentation/sourceforge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sourceforge/index.html -------------------------------------------------------------------------------- /Documentation/sources/Guide/.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example1/Makefile: -------------------------------------------------------------------------------- 1 | NAME = basics 2 | 3 | include ../MakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example1/NMakefile: -------------------------------------------------------------------------------- 1 | NAME = basics 2 | 3 | !include ../NMakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example1/basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Example1/basics.cpp -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example2/Makefile: -------------------------------------------------------------------------------- 1 | NAME = invert 2 | 3 | include ../MakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example2/NMakefile: -------------------------------------------------------------------------------- 1 | NAME = invert 2 | 3 | !include ../NMakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example2/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Example2/invert.cpp -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example3/Makefile: -------------------------------------------------------------------------------- 1 | NAME = gain 2 | 3 | include ../MakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example3/NMakefile: -------------------------------------------------------------------------------- 1 | NAME = gain 2 | 3 | !include ../NMakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example3/gain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Example3/gain.cpp -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example4/Makefile: -------------------------------------------------------------------------------- 1 | NAME = saturation 2 | 3 | include ../MakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example4/NMakefile: -------------------------------------------------------------------------------- 1 | NAME = saturation 2 | 3 | !include ../NMakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example4/saturation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Example4/saturation.cpp -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example5/Makefile: -------------------------------------------------------------------------------- 1 | NAME = circle 2 | 3 | include ../MakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example5/NMakefile: -------------------------------------------------------------------------------- 1 | NAME = circle 2 | 3 | !include ../NMakefileCommon 4 | -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Example5/circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Example5/circle.cpp -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Guide.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Guide.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/Makefile -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/MakefileCommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/MakefileCommon -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/NMakefile -------------------------------------------------------------------------------- /Documentation/sources/Guide/Code/NMakefileCommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Code/NMakefileCommon -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/GainControlPanelNuke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/GainControlPanelNuke.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/SaturationNuke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/SaturationNuke.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/dataLayout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/dataLayout.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/imagePlane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/imagePlane.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/kinder720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/kinder720.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/kinderCanonical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/kinderCanonical.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/kinderProxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/kinderProxy.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/kinderScout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/kinderScout.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/Pics/pelican.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/Pics/pelican.jpg -------------------------------------------------------------------------------- /Documentation/sources/Guide/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/README.txt -------------------------------------------------------------------------------- /Documentation/sources/Guide/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/TODO.txt -------------------------------------------------------------------------------- /Documentation/sources/Guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/index.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExample1_Basics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExample1_Basics.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExample2_Invert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExample2_Invert.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExample3_Gain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExample3_Gain.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExample4_Saturation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExample4_Saturation.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExample5_Circle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExample5_Circle.rst -------------------------------------------------------------------------------- /Documentation/sources/Guide/ofxExamples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Guide/ofxExamples.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/apiChanges_1_2_Chapter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/apiChanges_1_2_Chapter.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/index.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxClipPreferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxClipPreferences.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxCoordSystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxCoordSystem.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxCoreAPI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxCoreAPI.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxHostStruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxHostStruct.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxImageClip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxImageClip.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxImageEffectAPI.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxImageEffectAPI.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxImageEffectActions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxImageEffectActions.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxImageEffectContexts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxImageEffectContexts.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxInteractActions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxInteractActions.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxInteracts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxInteracts.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxLoadingSequence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxLoadingSequence.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxPackaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxPackaging.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxParameter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxParameter.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxPluginStruct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxPluginStruct.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxProcessingArch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxProcessingArch.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxPropertiesByObject.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxPropertiesByObject.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxPropertiesReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxPropertiesReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxRendering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxRendering.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxStatusCodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxStatusCodes.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxStructure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxStructure.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/ofxThreadSafety.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/ofxThreadSafety.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxImageEffectSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxImageEffectSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxInteractSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxInteractSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxMemorySuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxMemorySuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxMessageSuiteV1Reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxMessageSuiteV1Reference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxMessageSuiteV2Reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxMessageSuiteV2Reference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxOpenGLRenderSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxOpenGLRenderSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxParametersSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxParametersSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxParametricParamReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxParametricParamReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxProgressSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxProgressSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxPropertySuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxPropertySuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxThreadingSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxThreadingSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/Reference/suites/ofxTimeLineSuiteReference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/Reference/suites/ofxTimeLineSuiteReference.rst -------------------------------------------------------------------------------- /Documentation/sources/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/conf.py -------------------------------------------------------------------------------- /Documentation/sources/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Documentation/sources/index.rst -------------------------------------------------------------------------------- /Examples/Basic/Basic_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/Basic_2005.sln -------------------------------------------------------------------------------- /Examples/Basic/Basic_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/Basic_2005.vcproj -------------------------------------------------------------------------------- /Examples/Basic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/Info.plist -------------------------------------------------------------------------------- /Examples/Basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/Makefile -------------------------------------------------------------------------------- /Examples/Basic/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/MakefileOSX -------------------------------------------------------------------------------- /Examples/Basic/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Basic/basic.cpp -------------------------------------------------------------------------------- /Examples/Cuda/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/Info.plist -------------------------------------------------------------------------------- /Examples/Cuda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/Makefile -------------------------------------------------------------------------------- /Examples/Cuda/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/MakefileOSX -------------------------------------------------------------------------------- /Examples/Cuda/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/Readme.txt -------------------------------------------------------------------------------- /Examples/Cuda/cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/cuda.cpp -------------------------------------------------------------------------------- /Examples/Cuda/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Cuda/kernel.cu -------------------------------------------------------------------------------- /Examples/Custom/Custom_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/Custom_2005.sln -------------------------------------------------------------------------------- /Examples/Custom/Custom_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/Custom_2005.vcproj -------------------------------------------------------------------------------- /Examples/Custom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/Info.plist -------------------------------------------------------------------------------- /Examples/Custom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/Makefile -------------------------------------------------------------------------------- /Examples/Custom/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/MakefileOSX -------------------------------------------------------------------------------- /Examples/Custom/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Custom/custom.cpp -------------------------------------------------------------------------------- /Examples/DepthConverter/DepthConverter_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/DepthConverter_2005.sln -------------------------------------------------------------------------------- /Examples/DepthConverter/DepthConverter_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/DepthConverter_2005.vcproj -------------------------------------------------------------------------------- /Examples/DepthConverter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/Info.plist -------------------------------------------------------------------------------- /Examples/DepthConverter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/Makefile -------------------------------------------------------------------------------- /Examples/DepthConverter/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/MakefileOSX -------------------------------------------------------------------------------- /Examples/DepthConverter/depthConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/DepthConverter/depthConverter.cpp -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Invert/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/Info.plist -------------------------------------------------------------------------------- /Examples/Invert/Invert_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/Invert_2005.sln -------------------------------------------------------------------------------- /Examples/Invert/Invert_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/Invert_2005.vcproj -------------------------------------------------------------------------------- /Examples/Invert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/Makefile -------------------------------------------------------------------------------- /Examples/Invert/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/MakefileOSX -------------------------------------------------------------------------------- /Examples/Invert/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Invert/invert.cpp -------------------------------------------------------------------------------- /Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Makefile -------------------------------------------------------------------------------- /Examples/Makefile.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Makefile.master -------------------------------------------------------------------------------- /Examples/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/MakefileOSX -------------------------------------------------------------------------------- /Examples/OpenCL/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenCL/Info.plist -------------------------------------------------------------------------------- /Examples/OpenCL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenCL/Makefile -------------------------------------------------------------------------------- /Examples/OpenCL/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenCL/MakefileOSX -------------------------------------------------------------------------------- /Examples/OpenCL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenCL/Readme.txt -------------------------------------------------------------------------------- /Examples/OpenCL/oclplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenCL/oclplugin.cpp -------------------------------------------------------------------------------- /Examples/OpenGL/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenGL/Info.plist -------------------------------------------------------------------------------- /Examples/OpenGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenGL/Makefile -------------------------------------------------------------------------------- /Examples/OpenGL/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenGL/MakefileOSX -------------------------------------------------------------------------------- /Examples/OpenGL/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/OpenGL/opengl.cpp -------------------------------------------------------------------------------- /Examples/Overlay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/Info.plist -------------------------------------------------------------------------------- /Examples/Overlay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/Makefile -------------------------------------------------------------------------------- /Examples/Overlay/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/MakefileOSX -------------------------------------------------------------------------------- /Examples/Overlay/Overlay_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/Overlay_2005.sln -------------------------------------------------------------------------------- /Examples/Overlay/Overlay_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/Overlay_2005.vcproj -------------------------------------------------------------------------------- /Examples/Overlay/overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Overlay/overlay.cpp -------------------------------------------------------------------------------- /Examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/README.txt -------------------------------------------------------------------------------- /Examples/Readme-Cuda-OpenCL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Readme-Cuda-OpenCL.txt -------------------------------------------------------------------------------- /Examples/Rectangle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/Info.plist -------------------------------------------------------------------------------- /Examples/Rectangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/Makefile -------------------------------------------------------------------------------- /Examples/Rectangle/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/MakefileOSX -------------------------------------------------------------------------------- /Examples/Rectangle/Rectangle_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/Rectangle_2005.sln -------------------------------------------------------------------------------- /Examples/Rectangle/Rectangle_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/Rectangle_2005.vcproj -------------------------------------------------------------------------------- /Examples/Rectangle/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Rectangle/rectangle.cpp -------------------------------------------------------------------------------- /Examples/Test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/Info.plist -------------------------------------------------------------------------------- /Examples/Test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/Makefile -------------------------------------------------------------------------------- /Examples/Test/MakefileOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/MakefileOSX -------------------------------------------------------------------------------- /Examples/Test/Test_2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/Test_2005.sln -------------------------------------------------------------------------------- /Examples/Test/Test_2005.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/Test_2005.vcproj -------------------------------------------------------------------------------- /Examples/Test/ofxLog.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/ofxLog.H -------------------------------------------------------------------------------- /Examples/Test/ofxLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/ofxLog.cpp -------------------------------------------------------------------------------- /Examples/Test/testProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/Test/testProperties.cpp -------------------------------------------------------------------------------- /Examples/XML/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/XML/example.xml -------------------------------------------------------------------------------- /Examples/include/linuxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/include/linuxSymbols -------------------------------------------------------------------------------- /Examples/include/ofxUtilities.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/include/ofxUtilities.H -------------------------------------------------------------------------------- /Examples/include/osxDeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/include/osxDeploy.sh -------------------------------------------------------------------------------- /Examples/include/osxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Examples/include/osxSymbols -------------------------------------------------------------------------------- /HostSupport/BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/BUILDING -------------------------------------------------------------------------------- /HostSupport/HostSupport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/HostSupport.sln -------------------------------------------------------------------------------- /HostSupport/HostSupport.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/HostSupport.vcproj -------------------------------------------------------------------------------- /HostSupport/HostSupport.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/HostSupport.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HostSupport/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/Makefile -------------------------------------------------------------------------------- /HostSupport/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/README -------------------------------------------------------------------------------- /HostSupport/TTD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/TTD -------------------------------------------------------------------------------- /HostSupport/examples/CacheDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/CacheDemo.vcproj -------------------------------------------------------------------------------- /HostSupport/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/Makefile -------------------------------------------------------------------------------- /HostSupport/examples/cacheDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/cacheDemo.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemo.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemo.vcproj -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoClipInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoClipInstance.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoClipInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoClipInstance.h -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoEffectInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoEffectInstance.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoEffectInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoEffectInstance.h -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoHostDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoHostDescriptor.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoHostDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoHostDescriptor.h -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoParamInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoParamInstance.cpp -------------------------------------------------------------------------------- /HostSupport/examples/hostDemoParamInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/examples/hostDemoParamInstance.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/AUTHORS -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/CMake.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/CMake.README -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/CMakeLists.txt -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/COPYING -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/Changes -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/ConfigureChecks.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/README.md -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/acinclude.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/aclocal.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/buildconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/buildconf.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat-config-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat-config-version.cmake.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__linux.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__linux.cmake.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__macos.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__macos.cmake.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__windows.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat-noconfig__windows.cmake.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat-package-init.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat-package-init.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/autotools/expat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/autotools/expat.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/expat-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/expat-config.cmake.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/cmake/mingw-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/cmake/mingw-toolchain.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/configure -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/configure.ac -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ar-lib -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-append-compile-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-append-compile-flags.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-append-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-append-flag.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-append-link-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-append-link-flags.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-check-compile-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-check-compile-flag.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-check-link-flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-check-link-flag.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ax-require-defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ax-require-defined.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/compile -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/config.guess -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/config.sub -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/depcomp -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/expat.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/expat.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/expatcfg-compiler-supports-visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/expatcfg-compiler-supports-visibility.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/get-version.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/install-sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/ltmain.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/missing -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/conftools/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/conftools/test-driver -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/ok.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/ok.min.css -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/reference.html -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/style.css -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/valid-xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/valid-xhtml10.png -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/xmlwf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/xmlwf.1 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/doc/xmlwf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/doc/xmlwf.xml -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/examples/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/examples/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/examples/elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/examples/elements.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/examples/outline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/examples/outline.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/expat.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/expat.pc.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/expat.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/expat.pc.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/expat_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/expat_config.h.cmake -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/expat_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/expat_config.h.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/fix-xmltest-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/fix-xmltest-log.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/fuzz/xml_parse_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/fuzz/xml_parse_fuzzer.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/fuzz/xml_parsebuffer_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/fuzz/xml_parsebuffer_fuzzer.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/ascii.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/asciitab.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/expat.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/expat_external.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/iasciitab.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/internal.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/latin1tab.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/libexpat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/libexpat.def -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/libexpatw.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/libexpatw.def -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/nametab.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/siphash.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/utf8tab.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/winconfig.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmlparse.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmlrole.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmlrole.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmltok.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmltok.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmltok_impl.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmltok_impl.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/lib/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/lib/xmltok_ns.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/m4/libtool.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/m4/ltoptions.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/m4/ltsugar.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/m4/ltversion.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/run.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/run.sh.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/test-driver-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/test-driver-wrapper.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/README.txt -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/benchmark/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/benchmark/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/benchmark/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/benchmark/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/benchmark/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/benchmark/README.txt -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/benchmark/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/benchmark/benchmark.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/chardata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/chardata.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/chardata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/chardata.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/memcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/memcheck.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/memcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/memcheck.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/minicheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/minicheck.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/minicheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/minicheck.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/runtests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/runtests.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/runtestspp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/runtestspp.cpp -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/structdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/structdata.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/structdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/structdata.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/udiffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/udiffer.py -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/xmltest.log.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/xmltest.log.expected -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/tests/xmltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/tests/xmltest.sh -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/win32/MANIFEST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/win32/MANIFEST.txt -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/win32/README.txt -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/win32/build_expat_iss.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/win32/build_expat_iss.bat -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/win32/expat.iss -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/Makefile.am -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/Makefile.in -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/codepage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/codepage.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/codepage.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/ct.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/filemap.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/readfilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/readfilemap.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/unixfilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/unixfilemap.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/win32filemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/win32filemap.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlfile.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlfile.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlmime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlmime.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlmime.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmltchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmltchar.h -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlwf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlwf.c -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlwf_helpgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlwf_helpgen.py -------------------------------------------------------------------------------- /HostSupport/expat-2.4.3/xmlwf/xmlwf_helpgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/expat-2.4.3/xmlwf/xmlwf_helpgen.sh -------------------------------------------------------------------------------- /HostSupport/include/ofxhBinary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhBinary.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhClip.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhHost.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhImageEffect.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhImageEffectAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhImageEffectAPI.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhInteract.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhMemory.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhParam.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhPlatformDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhPlatformDefines.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhPluginAPICache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhPluginAPICache.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhPluginCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhPluginCache.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhProgress.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhPropertySuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhPropertySuite.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhTimeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhTimeLine.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhUtilities.h -------------------------------------------------------------------------------- /HostSupport/include/ofxhXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/include/ofxhXml.h -------------------------------------------------------------------------------- /HostSupport/src/ofxhBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhBinary.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhClip.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhHost.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhImageEffect.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhImageEffectAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhImageEffectAPI.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhInteract.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhMemory.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhParam.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhPluginAPICache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhPluginAPICache.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhPluginCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhPluginCache.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhPropertySuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhPropertySuite.cpp -------------------------------------------------------------------------------- /HostSupport/src/ofxhUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/HostSupport/src/ofxhUtilities.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/README.md -------------------------------------------------------------------------------- /Support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/LICENSE -------------------------------------------------------------------------------- /Support/Library/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/.gdb_history -------------------------------------------------------------------------------- /Support/Library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/Makefile -------------------------------------------------------------------------------- /Support/Library/ofxSupport.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxSupport.dsp -------------------------------------------------------------------------------- /Support/Library/ofxsCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsCore.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsHWNDInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsHWNDInteract.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsImageEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsImageEffect.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsInteract.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsLog.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsMultiThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsMultiThread.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsParams.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsProperty.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsPropertyValidation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsPropertyValidation.cpp -------------------------------------------------------------------------------- /Support/Library/ofxsSupportPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsSupportPrivate.h -------------------------------------------------------------------------------- /Support/Library/ofxsupport.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsupport.dsw -------------------------------------------------------------------------------- /Support/Library/ofxsupport.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Library/ofxsupport.vcproj -------------------------------------------------------------------------------- /Support/OSXStaticLoader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/OSXStaticLoader/Makefile -------------------------------------------------------------------------------- /Support/OSXStaticLoader/pluginLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/OSXStaticLoader/pluginLoader.cpp -------------------------------------------------------------------------------- /Support/Plugins/Basic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Basic/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/basic.cpp -------------------------------------------------------------------------------- /Support/Plugins/Basic/basic.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/basic.dsp -------------------------------------------------------------------------------- /Support/Plugins/Basic/basic.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/basic.dsw -------------------------------------------------------------------------------- /Support/Plugins/Basic/basic.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Basic/basic.vcproj -------------------------------------------------------------------------------- /Support/Plugins/ExamplePlugs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/ExamplePlugs.sln -------------------------------------------------------------------------------- /Support/Plugins/Field/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Field/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Field/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Field/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Field/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Field/field.cpp -------------------------------------------------------------------------------- /Support/Plugins/Field/field.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Field/field.vcproj -------------------------------------------------------------------------------- /Support/Plugins/Generator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Generator/noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/noise.cpp -------------------------------------------------------------------------------- /Support/Plugins/Generator/noise.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/noise.dsp -------------------------------------------------------------------------------- /Support/Plugins/Generator/noise.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/noise.dsw -------------------------------------------------------------------------------- /Support/Plugins/Generator/noise.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/noise.vcproj -------------------------------------------------------------------------------- /Support/Plugins/Generator/randomGenerator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/randomGenerator.H -------------------------------------------------------------------------------- /Support/Plugins/Generator/randomGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Generator/randomGenerator.cpp -------------------------------------------------------------------------------- /Support/Plugins/Invert/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Invert/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Invert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Invert/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Invert/invert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Invert/invert.cpp -------------------------------------------------------------------------------- /Support/Plugins/Invert/invert.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Invert/invert.vcproj -------------------------------------------------------------------------------- /Support/Plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Makefile.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Makefile.master -------------------------------------------------------------------------------- /Support/Plugins/MultiBundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiBundle/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/MultiBundle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiBundle/Makefile -------------------------------------------------------------------------------- /Support/Plugins/MultiBundle/multibundle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiBundle/multibundle.vcproj -------------------------------------------------------------------------------- /Support/Plugins/MultiBundle/multibundle1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiBundle/multibundle1.cpp -------------------------------------------------------------------------------- /Support/Plugins/MultiBundle/multibundle2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiBundle/multibundle2.cpp -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/Makefile -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/MultiplyCUDA.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/MultiplyCUDA.cu -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/MultiplyGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/MultiplyGPU.cpp -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/MultiplyGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/MultiplyGPU.h -------------------------------------------------------------------------------- /Support/Plugins/MultiplyGPU/MultiplyOpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/MultiplyGPU/MultiplyOpenCL.cpp -------------------------------------------------------------------------------- /Support/Plugins/Retimer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Retimer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Retimer/retimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/retimer.cpp -------------------------------------------------------------------------------- /Support/Plugins/Retimer/retimer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/retimer.dsp -------------------------------------------------------------------------------- /Support/Plugins/Retimer/retimer.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/retimer.dsw -------------------------------------------------------------------------------- /Support/Plugins/Retimer/retimer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Retimer/retimer.vcproj -------------------------------------------------------------------------------- /Support/Plugins/Tester/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Tester/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Tester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Tester/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Tester/Tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Tester/Tester.cpp -------------------------------------------------------------------------------- /Support/Plugins/Tester/Tester.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Tester/Tester.vcproj -------------------------------------------------------------------------------- /Support/Plugins/Transition/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/Info.plist -------------------------------------------------------------------------------- /Support/Plugins/Transition/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/Makefile -------------------------------------------------------------------------------- /Support/Plugins/Transition/crossFade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/crossFade.cpp -------------------------------------------------------------------------------- /Support/Plugins/Transition/crossFade.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/crossFade.dsp -------------------------------------------------------------------------------- /Support/Plugins/Transition/crossFade.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/crossFade.dsw -------------------------------------------------------------------------------- /Support/Plugins/Transition/crossFade.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/Transition/crossFade.vcproj -------------------------------------------------------------------------------- /Support/Plugins/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/include/README -------------------------------------------------------------------------------- /Support/Plugins/include/ofxsImageBlender.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/include/ofxsImageBlender.H -------------------------------------------------------------------------------- /Support/Plugins/include/ofxsProcessing.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Plugins/include/ofxsProcessing.H -------------------------------------------------------------------------------- /Support/PropTester/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/Info.plist -------------------------------------------------------------------------------- /Support/PropTester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/Makefile -------------------------------------------------------------------------------- /Support/PropTester/propTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/propTester.cpp -------------------------------------------------------------------------------- /Support/PropTester/propTester.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/propTester.dsp -------------------------------------------------------------------------------- /Support/PropTester/propTester.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/propTester.dsw -------------------------------------------------------------------------------- /Support/PropTester/propTester.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/PropTester/propTester.vcproj -------------------------------------------------------------------------------- /Support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/README -------------------------------------------------------------------------------- /Support/Support.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/Support.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Support/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/TODO -------------------------------------------------------------------------------- /Support/include/linuxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/linuxSymbols -------------------------------------------------------------------------------- /Support/include/ofxsCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsCore.h -------------------------------------------------------------------------------- /Support/include/ofxsHWNDInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsHWNDInteract.h -------------------------------------------------------------------------------- /Support/include/ofxsImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsImageEffect.h -------------------------------------------------------------------------------- /Support/include/ofxsInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsInteract.h -------------------------------------------------------------------------------- /Support/include/ofxsLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsLog.h -------------------------------------------------------------------------------- /Support/include/ofxsMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsMemory.h -------------------------------------------------------------------------------- /Support/include/ofxsMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsMessage.h -------------------------------------------------------------------------------- /Support/include/ofxsMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsMultiThread.h -------------------------------------------------------------------------------- /Support/include/ofxsParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/ofxsParam.h -------------------------------------------------------------------------------- /Support/include/osxDeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/osxDeploy.sh -------------------------------------------------------------------------------- /Support/include/osxSymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/include/osxSymbols -------------------------------------------------------------------------------- /Support/support.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/Support/support.doxy -------------------------------------------------------------------------------- /include/DocSrc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/DocSrc/footer.html -------------------------------------------------------------------------------- /include/DocSrc/ofx_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/DocSrc/ofx_footer.html -------------------------------------------------------------------------------- /include/DocSrc/ofx_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/DocSrc/ofx_header.html -------------------------------------------------------------------------------- /include/DocSrc/ofx_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/DocSrc/ofx_style.css -------------------------------------------------------------------------------- /include/OFX_navheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/OFX_navheader.png -------------------------------------------------------------------------------- /include/OFX_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/OFX_small.png -------------------------------------------------------------------------------- /include/nuke/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/nuke/camera.h -------------------------------------------------------------------------------- /include/nuke/fnOfxExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/nuke/fnOfxExtensions.h -------------------------------------------------------------------------------- /include/nuke/fnPublicOfxExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/nuke/fnPublicOfxExtensions.h -------------------------------------------------------------------------------- /include/ofx.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofx.doxy -------------------------------------------------------------------------------- /include/ofx.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofx.dtd -------------------------------------------------------------------------------- /include/ofxCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxCore.h -------------------------------------------------------------------------------- /include/ofxDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxDialog.h -------------------------------------------------------------------------------- /include/ofxImageEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxImageEffect.h -------------------------------------------------------------------------------- /include/ofxInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxInteract.h -------------------------------------------------------------------------------- /include/ofxKeySyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxKeySyms.h -------------------------------------------------------------------------------- /include/ofxMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxMemory.h -------------------------------------------------------------------------------- /include/ofxMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxMessage.h -------------------------------------------------------------------------------- /include/ofxMultiThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxMultiThread.h -------------------------------------------------------------------------------- /include/ofxNatron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxNatron.h -------------------------------------------------------------------------------- /include/ofxOld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxOld.h -------------------------------------------------------------------------------- /include/ofxOpenGLRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxOpenGLRender.h -------------------------------------------------------------------------------- /include/ofxParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxParam.h -------------------------------------------------------------------------------- /include/ofxParametricParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxParametricParam.h -------------------------------------------------------------------------------- /include/ofxPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxPixels.h -------------------------------------------------------------------------------- /include/ofxProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxProgress.h -------------------------------------------------------------------------------- /include/ofxProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxProperty.h -------------------------------------------------------------------------------- /include/ofxSonyVegas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxSonyVegas.h -------------------------------------------------------------------------------- /include/ofxStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxStyle.css -------------------------------------------------------------------------------- /include/ofxTimeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/ofxTimeLine.h -------------------------------------------------------------------------------- /include/tuttle/ofxReadWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/include/tuttle/ofxReadWrite.h -------------------------------------------------------------------------------- /readme-ofxa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/readme-ofxa.md -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/release-notes.md -------------------------------------------------------------------------------- /scripts/genRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/scripts/genRelease -------------------------------------------------------------------------------- /scripts/genSupportDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/scripts/genSupportDoc -------------------------------------------------------------------------------- /scripts/genSupportRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/scripts/genSupportRelease -------------------------------------------------------------------------------- /scripts/uploadRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/scripts/uploadRelease -------------------------------------------------------------------------------- /website/htdocs/Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/website/htdocs/Documentation/index.html -------------------------------------------------------------------------------- /website/htdocs/OFXLogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/website/htdocs/OFXLogo.gif -------------------------------------------------------------------------------- /website/htdocs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx/HEAD/website/htdocs/index.html --------------------------------------------------------------------------------