├── .travis-coverity-scan-build.sh ├── .travis.yml.disabled ├── CMakeLists.txt ├── COPYING ├── GMIC_OFX ├── GMIC-orig.png ├── GMIC.png ├── GMICK.ntp ├── GMIC_OFX.xcodeproj │ └── project.pbxproj ├── Info.plist └── Makefile ├── Helpers ├── RFX_AE_Utils.h ├── RFX_FileUtils.cpp ├── RFX_FileUtils.h ├── RFX_OFX_Utils.h ├── RFX_Parameter.h ├── RFX_StringUtils.cpp ├── RFX_StringUtils.h ├── RFX_Utils.h ├── gmic_parser.cpp └── gmic_parser.h ├── Licence_CeCILL-C_V1-en.txt ├── Licence_CeCILL_V2-en.txt ├── Makefile ├── README └── gmic_plugin.cpp /.travis-coverity-scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/.travis-coverity-scan-build.sh -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/COPYING -------------------------------------------------------------------------------- /GMIC_OFX/GMIC-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/GMIC-orig.png -------------------------------------------------------------------------------- /GMIC_OFX/GMIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/GMIC.png -------------------------------------------------------------------------------- /GMIC_OFX/GMICK.ntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/GMICK.ntp -------------------------------------------------------------------------------- /GMIC_OFX/GMIC_OFX.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/GMIC_OFX.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GMIC_OFX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/Info.plist -------------------------------------------------------------------------------- /GMIC_OFX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/GMIC_OFX/Makefile -------------------------------------------------------------------------------- /Helpers/RFX_AE_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_AE_Utils.h -------------------------------------------------------------------------------- /Helpers/RFX_FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_FileUtils.cpp -------------------------------------------------------------------------------- /Helpers/RFX_FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_FileUtils.h -------------------------------------------------------------------------------- /Helpers/RFX_OFX_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_OFX_Utils.h -------------------------------------------------------------------------------- /Helpers/RFX_Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_Parameter.h -------------------------------------------------------------------------------- /Helpers/RFX_StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_StringUtils.cpp -------------------------------------------------------------------------------- /Helpers/RFX_StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_StringUtils.h -------------------------------------------------------------------------------- /Helpers/RFX_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/RFX_Utils.h -------------------------------------------------------------------------------- /Helpers/gmic_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/gmic_parser.cpp -------------------------------------------------------------------------------- /Helpers/gmic_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Helpers/gmic_parser.h -------------------------------------------------------------------------------- /Licence_CeCILL-C_V1-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Licence_CeCILL-C_V1-en.txt -------------------------------------------------------------------------------- /Licence_CeCILL_V2-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Licence_CeCILL_V2-en.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/README -------------------------------------------------------------------------------- /gmic_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatronGitHub/openfx-gmic/HEAD/gmic_plugin.cpp --------------------------------------------------------------------------------