QueenEngineConfigInfo
@interface QueenEngineConfigInfo :NSObject
/****
 * You can get a License Key after applying for authorization.
 */
@property (nonatomic, copy) NSString *licenseKey;
/****
 * Built-in certificate file path.
 */
@property (nonatomic, copy) NSString *licenseFile;
/****
 * The root directory of QueenEngine resource, default is nil, the main bundle path.
 */
@property (nonatomic, copy) NSString *resRootPath;
/****
 * Whether to automatically create GLContext by QueenEngine, if you want to process CVPixelBufferDataRef, you need to set it to YES, the default is YES.
 */
@property (nonatomic, assign) BOOL withContext;
/****
 * If you need to create a GLContext by QueenEngine synchronously when you create an engine, set it to YES, the default to NO.
 */
@property (nonatomic, assign) BOOL createContextSync;
/****
 * Whether to render to the screen, the default to NO.
 */
@property (nonatomic, assign) BOOL toScreen;
/****
 * Whether to set the inputAngle and outputAngle of the image automatically, the default is NO.
 */
@property (nonatomic, assign) BOOL autoSettingImgAngle;
/****
 * Algorithm parameter input mode, the default is kQueenAlgInputModeSemiAutomatic.
 */
@property (nonatomic, assign) kQueenAlgInputMode algInputMode;
/****
 * Whether to run in a custom thread, the default is YES.
 */
@property (nonatomic, assign) BOOL runOnCustomThread;
/****
 * Whether to allow data statistics , the default is YES.
 */
@property (nonatomic, assign) BOOL enableStats;
/****
 * Reserved field, optional.
 */
@property (nonatomic, copy) NSString *extraInfo;
@end
                Undocumented
- 
                  
                  
You can get a License Key after applying for authorization.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull licenseKey; - 
                  
                  
Built-in certificate file path.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull licenseFile; - 
                  
                  
The root directory of QueenEngine resource, default is nil, the main bundle path.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull resRootPath; - 
                  
                  
Whether to automatically create GLContext by QueenEngine, if you want to process CVPixelBufferDataRef, you need to set it to YES, the default is YES.
Declaration
Objective-C
@property (nonatomic) BOOL withContext; - 
                  
                  
If you need to create a GLContext by QueenEngine synchronously when you create an engine, set it to YES, the default to NO.
Declaration
Objective-C
@property (nonatomic) BOOL createContextSync; - 
                  
                  
Whether to render to the screen, the default to NO.
Declaration
Objective-C
@property (nonatomic) BOOL toScreen; - 
                  
                  
Whether to set the inputAngle and outputAngle of the image automatically, the default is NO.
Declaration
Objective-C
@property (nonatomic) BOOL autoSettingImgAngle; - 
                  
                  
Algorithm parameter input mode, the default is kQueenAlgInputModeSemiAutomatic.
Declaration
Objective-C
@property (nonatomic) kQueenAlgInputMode algInputMode; - 
                  
                  
Whether to run in a custom thread, the default is YES.
Declaration
Objective-C
@property (nonatomic) BOOL runOnCustomThread; - 
                  
                  
Whether to allow data statistics , the default is YES.
Declaration
Objective-C
@property (nonatomic) BOOL enableStats; - 
                  
                  
Reserved field, optional.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nonnull extraInfo; 
        QueenEngineConfigInfo Class Reference