TuttleOFX
1
|
#include "ofxCore.h"
Go to the source code of this file.
Data Structures | |
struct | OfxMultiThreadSuiteV1 |
OFX suite that provides simple SMP style multi-processing. More... | |
Defines | |
#define | kOfxMultiThreadSuite "OfxMultiThreadSuite" |
Typedefs | |
typedef struct OfxMutex * | OfxMutexHandle |
Mutex blind data handle. | |
typedef void( | OfxThreadFunctionV1 )(unsigned int threadIndex, unsigned int threadMax, void *customArg) |
The function type to passed to the multi threading routines. | |
typedef struct OfxMultiThreadSuiteV1 | OfxMultiThreadSuiteV1 |
OFX suite that provides simple SMP style multi-processing. |
This file contains the Host Suite for threading
Definition in file ofxMultiThread.h.
#define kOfxMultiThreadSuite "OfxMultiThreadSuite" |
Definition at line 45 of file ofxMultiThread.h.
Referenced by tuttle::host::ofx::imageEffect::OfxhImageEffectHost::fetchSuite(), and OFX::Private::loadAction().
typedef struct OfxMultiThreadSuiteV1 OfxMultiThreadSuiteV1 |
OFX suite that provides simple SMP style multi-processing.
typedef struct OfxMutex* OfxMutexHandle |
Mutex blind data handle.
Definition at line 49 of file ofxMultiThread.h.
typedef void( OfxThreadFunctionV1)(unsigned int threadIndex, unsigned int threadMax, void *customArg) |
The function type to passed to the multi threading routines.
A function of this type is passed to OfxMultiThreadSuiteV1::multiThread to be launched in multiple threads.
Definition at line 59 of file ofxMultiThread.h.