This repository was archived by the owner on Dec 9, 2022. It is now read-only.
File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -1285,6 +1285,26 @@ Natron::OfxHost::mutexTryLock(const OfxMutexHandle mutex)
1285
1285
1286
1286
#endif // ifdef OFX_SUPPORTS_MULTITHREAD
1287
1287
1288
+ #ifdef OFX_SUPPORTS_DIALOG
1289
+ // dialog
1290
+ // / @see OfxDialogSuiteV1.RequestDialog()
1291
+ OfxStatus
1292
+ Natron::OfxHost::requestDialog (void * user_data)
1293
+ {
1294
+ #pragma message WARN("OfxDialogSuiteV1: TODO")
1295
+ // TODO: call Natron::OfxHost::dialog(user_data) in the main thread
1296
+ return kOfxStatFailed ;
1297
+ }
1298
+
1299
+ // / @see OfxDialogSuiteV1.NotifyRedrawPending()
1300
+ OfxStatus
1301
+ Natron::OfxHost::notifyRedrawPending ()
1302
+ {
1303
+ return kOfxStatReplyDefault ;
1304
+ }
1305
+
1306
+ #endif
1307
+
1288
1308
#ifdef OFX_SUPPORTS_OPENGLRENDER
1289
1309
// / @see OfxImageEffectOpenGLRenderSuiteV1.flushResources()
1290
1310
OfxStatus Natron::OfxHost::flushOpenGLResources () const
Original file line number Diff line number Diff line change 17
17
# ***** END LICENSE BLOCK *****
18
18
19
19
CONFIG += warn_on no_keywords
20
- DEFINES += OFX_EXTENSIONS_NUKE OFX_EXTENSIONS_TUTTLE OFX_EXTENSIONS_VEGAS OFX_SUPPORTS_PARAMETRIC OFX_EXTENSIONS_TUTTLE OFX_EXTENSIONS_NATRON OFX_SUPPORTS_OPENGLRENDER
20
+ DEFINES += OFX_EXTENSIONS_NUKE OFX_EXTENSIONS_TUTTLE OFX_EXTENSIONS_VEGAS OFX_SUPPORTS_PARAMETRIC OFX_EXTENSIONS_TUTTLE OFX_EXTENSIONS_NATRON OFX_SUPPORTS_OPENGLRENDER OFX_SUPPORTS_DIALOG
21
21
DEFINES += OFX_SUPPORTS_MULTITHREAD
22
22
23
23
trace_ofx_actions{
You can’t perform that action at this time.
0 commit comments