-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add some Resolve features #18
base: master
Are you sure you want to change the base?
Conversation
add OFX::Host::Param::StrChoiceInstance add ImageEffect properties : - kOfxImageEffectPropCudaStreamSupported - kOfxImageEffectPropMetalRenderSupported add Render properties : - kOfxImageEffectPropMetalEnabled - kOfxImageEffectPropCudaStream - kOfxImageEffectPropMetalCommandQueue correct a use after free error in kOfxActionUnload
11715df
to
a9aebbc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Thank you David!
Since you seem to be developing on resolve, could you take a look at why the plugins in openfx-misc don't load/run? I found no way to debug this. Probably some openfx stuff that doesn't please Resolve.
Also, we get regular requests for binaries of denoisesharpen (from openfx-misc) for Resolve, do you think you could contribute this?
# endif | ||
stat = (*_pluginHandle)->mainEntry(kOfxActionUnload, 0, 0, 0); | ||
# ifdef OFX_DEBUG_ACTIONS | ||
std::cout << "OFX: "<<op->pluginIdentifier<<"("<<(void*)op<<")->"<<kOfxActionUnload<<"()->"<<StatStr(stat)<<std::endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's it still a draft or is it ready to merge?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is still a draft as I am not sure of the way StrChoiceInstance::notify
is supposed to work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
About openfx-misc
plugins, what is the issue ? They do not load on macOS and Windows and Linux or a specific OS and specific versions of Resolve ?
ready? |
Not yet. I am putting it into action and |
add
OFX::Host::Param::StrChoiceInstance
add ImageEffect properties :
kOfxImageEffectPropCudaStreamSupported
kOfxImageEffectPropMetalRenderSupported
add Render properties :
kOfxImageEffectPropMetalEnabled
kOfxImageEffectPropCudaStream
kOfxImageEffectPropMetalCommandQueue
correct a use after free error in
kOfxActionUnload