change: Switch to offical OpenFX Support. Still can't compile.

This commit is contained in:
Mike Solar
2025-09-03 21:14:56 +08:00
parent 7ff76427f9
commit b649b5e1bd
198 changed files with 57444 additions and 980 deletions
+20
View File
@@ -0,0 +1,20 @@
#include <stdio.h>
#include "ofxsImageEffect.h"
#include "multibundle1.h"
#include "multibundle2.h"
namespace OFX
{
namespace Plugin
{
void getPluginIDs(OFX::PluginFactoryArray &ids)
{
static DotExamplePluginFactory p1;
ids.push_back(&p1);
static GammaExamplePluginFactory p2;
ids.push_back(&p2);
}
}
}