尝试修复粉紫屏未果

This commit is contained in:
2026-01-16 21:11:24 +08:00
parent 3f774dfa53
commit e851653fa3
30 changed files with 1377 additions and 238 deletions
+3 -1
View File
@@ -10,6 +10,7 @@
#include <list>
#include <vector>
#include "ofxCore.h"
#include "ofxImageEffect.h"
// macro that intercepts any exception that passes through a plugin's entry point, and transforms it into a message on the host using Host::vmessage()
#define CatchAllSetStatus(stat,host,plugin,msg) \
@@ -138,6 +139,8 @@ namespace OFX {
return "kOfxStatErrBadIndex";
case kOfxStatErrValue:
return "kOfxStatErrValue";
case kOfxStatErrImageFormat:
return "kOfxStatErrImageFormat";
case kOfxStatReplyYes:
return "kOfxStatReplyYes";
case kOfxStatReplyNo:
@@ -151,4 +154,3 @@ namespace OFX {
}
#endif