├── .travis-coverity-scan-build.sh ├── .travis.yml ├── EXR ├── Info.plist ├── Makefile ├── ReadEXR.cpp ├── WriteEXR.cpp ├── fr.inria.openfx.ReadEXR.png ├── fr.inria.openfx.ReadEXR.svg ├── fr.inria.openfx.WriteEXR.png └── fr.inria.openfx.WriteEXR.svg ├── FFmpeg ├── FFmpegCompat.h ├── FFmpegFile.cpp ├── FFmpegFile.h ├── Info.plist ├── Makefile ├── PixelFormat.cpp ├── PixelFormat.h ├── ReadFFmpeg.cpp ├── TODO.txt ├── WriteFFmpeg.cpp ├── fr.inria.openfx.ReadFFmpeg.png ├── fr.inria.openfx.ReadFFmpeg.svg ├── fr.inria.openfx.WriteFFmpeg.png └── fr.inria.openfx.WriteFFmpeg.svg ├── INRIA.IO.manifest ├── IO.sln ├── IO.xcodeproj └── project.pbxproj ├── IO ├── IO.vcxproj ├── Info.plist └── Makefile ├── IOPluginProperty.props ├── IOSupport ├── GenericOCIO.cpp ├── GenericOCIO.h ├── GenericOCIOOpenGL.cpp ├── GenericReader.cpp ├── GenericReader.h ├── GenericWriter.cpp ├── GenericWriter.h └── IOUtility.h ├── LICENSE ├── Makefile ├── Makefile.master ├── OCIO ├── Info.plist ├── Makefile ├── OCIOCDLTransform.cpp ├── OCIOColorSpace.cpp ├── OCIODisplay.cpp ├── OCIOFileTransform.cpp ├── OCIOLogConvert.cpp ├── OCIOLookTransform.cpp ├── fr.inria.openfx.OCIOCDLTransform.png ├── fr.inria.openfx.OCIOColorSpace.png ├── fr.inria.openfx.OCIODisplay.png ├── fr.inria.openfx.OCIOFileTransform.png ├── fr.inria.openfx.OCIOLogConvert.png └── fr.inria.openfx.OCIOLookTransform.png ├── OIIO ├── Info.plist ├── Makefile ├── OIIOGlobal.h ├── OIIOResize.cpp ├── OIIOText.cpp ├── ReadOIIO.cpp ├── WriteOIIO.cpp ├── fr.inria.openfx.OIIOResize.png ├── fr.inria.openfx.OIIOResize.svg ├── fr.inria.openfx.OIIOText.png ├── fr.inria.openfx.OIIOText.svg ├── fr.inria.openfx.ReadOIIO.png ├── fr.inria.openfx.ReadOIIO.svg ├── fr.inria.openfx.WriteOIIO.png └── fr.inria.openfx.WriteOIIO.svg ├── PFM ├── Info.plist ├── Makefile ├── ReadPFM.cpp ├── WritePFM.cpp ├── fr.inria.openfx.ReadPFM.png ├── fr.inria.openfx.ReadPFM.svg ├── fr.inria.openfx.WritePFM.png └── fr.inria.openfx.WritePFM.svg ├── PNG ├── Info.plist ├── Makefile ├── ReadPNG.cpp ├── WritePNG.cpp ├── fr.inria.openfx.ReadPNG.png ├── fr.inria.openfx.ReadPNG.svg ├── fr.inria.openfx.WritePNG.png └── fr.inria.openfx.WritePNG.svg ├── README.md ├── RunScript ├── Info.plist ├── Makefile ├── RunScript.cpp ├── RunScript.h ├── fr.inria.openfx.RunScript.png ├── fr.inria.openfx.RunScript.svg └── pstream.h ├── SeExpr ├── Info.plist ├── Makefile ├── SeExpr.cpp ├── SeGrain.cpp ├── SeNoise.cpp ├── fr.inria.openfx.SeExpr.png ├── fr.inria.openfx.SeExpr.svg ├── fr.inria.openfx.SeExprSimple.png └── fr.inria.openfx.SeExprSimple.svg └── gpl-header-c.txt /.travis-coverity-scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/.travis-coverity-scan-build.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/.travis.yml -------------------------------------------------------------------------------- /EXR/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/Info.plist -------------------------------------------------------------------------------- /EXR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/Makefile -------------------------------------------------------------------------------- /EXR/ReadEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/ReadEXR.cpp -------------------------------------------------------------------------------- /EXR/WriteEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/WriteEXR.cpp -------------------------------------------------------------------------------- /EXR/fr.inria.openfx.ReadEXR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/fr.inria.openfx.ReadEXR.png -------------------------------------------------------------------------------- /EXR/fr.inria.openfx.ReadEXR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/fr.inria.openfx.ReadEXR.svg -------------------------------------------------------------------------------- /EXR/fr.inria.openfx.WriteEXR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/fr.inria.openfx.WriteEXR.png -------------------------------------------------------------------------------- /EXR/fr.inria.openfx.WriteEXR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/EXR/fr.inria.openfx.WriteEXR.svg -------------------------------------------------------------------------------- /FFmpeg/FFmpegCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/FFmpegCompat.h -------------------------------------------------------------------------------- /FFmpeg/FFmpegFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/FFmpegFile.cpp -------------------------------------------------------------------------------- /FFmpeg/FFmpegFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/FFmpegFile.h -------------------------------------------------------------------------------- /FFmpeg/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/Info.plist -------------------------------------------------------------------------------- /FFmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/Makefile -------------------------------------------------------------------------------- /FFmpeg/PixelFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/PixelFormat.cpp -------------------------------------------------------------------------------- /FFmpeg/PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/PixelFormat.h -------------------------------------------------------------------------------- /FFmpeg/ReadFFmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/ReadFFmpeg.cpp -------------------------------------------------------------------------------- /FFmpeg/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/TODO.txt -------------------------------------------------------------------------------- /FFmpeg/WriteFFmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/WriteFFmpeg.cpp -------------------------------------------------------------------------------- /FFmpeg/fr.inria.openfx.ReadFFmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/fr.inria.openfx.ReadFFmpeg.png -------------------------------------------------------------------------------- /FFmpeg/fr.inria.openfx.ReadFFmpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/fr.inria.openfx.ReadFFmpeg.svg -------------------------------------------------------------------------------- /FFmpeg/fr.inria.openfx.WriteFFmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/fr.inria.openfx.WriteFFmpeg.png -------------------------------------------------------------------------------- /FFmpeg/fr.inria.openfx.WriteFFmpeg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/FFmpeg/fr.inria.openfx.WriteFFmpeg.svg -------------------------------------------------------------------------------- /INRIA.IO.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/INRIA.IO.manifest -------------------------------------------------------------------------------- /IO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IO.sln -------------------------------------------------------------------------------- /IO.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IO.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IO/IO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IO/IO.vcxproj -------------------------------------------------------------------------------- /IO/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IO/Info.plist -------------------------------------------------------------------------------- /IO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IO/Makefile -------------------------------------------------------------------------------- /IOPluginProperty.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOPluginProperty.props -------------------------------------------------------------------------------- /IOSupport/GenericOCIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericOCIO.cpp -------------------------------------------------------------------------------- /IOSupport/GenericOCIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericOCIO.h -------------------------------------------------------------------------------- /IOSupport/GenericOCIOOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericOCIOOpenGL.cpp -------------------------------------------------------------------------------- /IOSupport/GenericReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericReader.cpp -------------------------------------------------------------------------------- /IOSupport/GenericReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericReader.h -------------------------------------------------------------------------------- /IOSupport/GenericWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericWriter.cpp -------------------------------------------------------------------------------- /IOSupport/GenericWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/GenericWriter.h -------------------------------------------------------------------------------- /IOSupport/IOUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/IOSupport/IOUtility.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/Makefile.master -------------------------------------------------------------------------------- /OCIO/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/Info.plist -------------------------------------------------------------------------------- /OCIO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/Makefile -------------------------------------------------------------------------------- /OCIO/OCIOCDLTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIOCDLTransform.cpp -------------------------------------------------------------------------------- /OCIO/OCIOColorSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIOColorSpace.cpp -------------------------------------------------------------------------------- /OCIO/OCIODisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIODisplay.cpp -------------------------------------------------------------------------------- /OCIO/OCIOFileTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIOFileTransform.cpp -------------------------------------------------------------------------------- /OCIO/OCIOLogConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIOLogConvert.cpp -------------------------------------------------------------------------------- /OCIO/OCIOLookTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/OCIOLookTransform.cpp -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIOCDLTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIOCDLTransform.png -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIOColorSpace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIOColorSpace.png -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIODisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIODisplay.png -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIOFileTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIOFileTransform.png -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIOLogConvert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIOLogConvert.png -------------------------------------------------------------------------------- /OCIO/fr.inria.openfx.OCIOLookTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OCIO/fr.inria.openfx.OCIOLookTransform.png -------------------------------------------------------------------------------- /OIIO/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/Info.plist -------------------------------------------------------------------------------- /OIIO/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/Makefile -------------------------------------------------------------------------------- /OIIO/OIIOGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/OIIOGlobal.h -------------------------------------------------------------------------------- /OIIO/OIIOResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/OIIOResize.cpp -------------------------------------------------------------------------------- /OIIO/OIIOText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/OIIOText.cpp -------------------------------------------------------------------------------- /OIIO/ReadOIIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/ReadOIIO.cpp -------------------------------------------------------------------------------- /OIIO/WriteOIIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/WriteOIIO.cpp -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.OIIOResize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.OIIOResize.png -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.OIIOResize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.OIIOResize.svg -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.OIIOText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.OIIOText.png -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.OIIOText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.OIIOText.svg -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.ReadOIIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.ReadOIIO.png -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.ReadOIIO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.ReadOIIO.svg -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.WriteOIIO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.WriteOIIO.png -------------------------------------------------------------------------------- /OIIO/fr.inria.openfx.WriteOIIO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/OIIO/fr.inria.openfx.WriteOIIO.svg -------------------------------------------------------------------------------- /PFM/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/Info.plist -------------------------------------------------------------------------------- /PFM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/Makefile -------------------------------------------------------------------------------- /PFM/ReadPFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/ReadPFM.cpp -------------------------------------------------------------------------------- /PFM/WritePFM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/WritePFM.cpp -------------------------------------------------------------------------------- /PFM/fr.inria.openfx.ReadPFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/fr.inria.openfx.ReadPFM.png -------------------------------------------------------------------------------- /PFM/fr.inria.openfx.ReadPFM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/fr.inria.openfx.ReadPFM.svg -------------------------------------------------------------------------------- /PFM/fr.inria.openfx.WritePFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/fr.inria.openfx.WritePFM.png -------------------------------------------------------------------------------- /PFM/fr.inria.openfx.WritePFM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PFM/fr.inria.openfx.WritePFM.svg -------------------------------------------------------------------------------- /PNG/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/Info.plist -------------------------------------------------------------------------------- /PNG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/Makefile -------------------------------------------------------------------------------- /PNG/ReadPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/ReadPNG.cpp -------------------------------------------------------------------------------- /PNG/WritePNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/WritePNG.cpp -------------------------------------------------------------------------------- /PNG/fr.inria.openfx.ReadPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/fr.inria.openfx.ReadPNG.png -------------------------------------------------------------------------------- /PNG/fr.inria.openfx.ReadPNG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/fr.inria.openfx.ReadPNG.svg -------------------------------------------------------------------------------- /PNG/fr.inria.openfx.WritePNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/fr.inria.openfx.WritePNG.png -------------------------------------------------------------------------------- /PNG/fr.inria.openfx.WritePNG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/PNG/fr.inria.openfx.WritePNG.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/README.md -------------------------------------------------------------------------------- /RunScript/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/Info.plist -------------------------------------------------------------------------------- /RunScript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/Makefile -------------------------------------------------------------------------------- /RunScript/RunScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/RunScript.cpp -------------------------------------------------------------------------------- /RunScript/RunScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/RunScript.h -------------------------------------------------------------------------------- /RunScript/fr.inria.openfx.RunScript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/fr.inria.openfx.RunScript.png -------------------------------------------------------------------------------- /RunScript/fr.inria.openfx.RunScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/fr.inria.openfx.RunScript.svg -------------------------------------------------------------------------------- /RunScript/pstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/RunScript/pstream.h -------------------------------------------------------------------------------- /SeExpr/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/Info.plist -------------------------------------------------------------------------------- /SeExpr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/Makefile -------------------------------------------------------------------------------- /SeExpr/SeExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/SeExpr.cpp -------------------------------------------------------------------------------- /SeExpr/SeGrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/SeGrain.cpp -------------------------------------------------------------------------------- /SeExpr/SeNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/SeNoise.cpp -------------------------------------------------------------------------------- /SeExpr/fr.inria.openfx.SeExpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/fr.inria.openfx.SeExpr.png -------------------------------------------------------------------------------- /SeExpr/fr.inria.openfx.SeExpr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/fr.inria.openfx.SeExpr.svg -------------------------------------------------------------------------------- /SeExpr/fr.inria.openfx.SeExprSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/fr.inria.openfx.SeExprSimple.png -------------------------------------------------------------------------------- /SeExpr/fr.inria.openfx.SeExprSimple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/SeExpr/fr.inria.openfx.SeExprSimple.svg -------------------------------------------------------------------------------- /gpl-header-c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrKepzie/openfx-io/HEAD/gpl-header-c.txt --------------------------------------------------------------------------------