QueenEngineConfigInfo

@interface QueenEngineConfigInfo :NSObject

/**
 * licenseKey 在申请 Queen 授权时获得。如果是老版本的客户,之前申请授权时没有收到 licenseKey 的,请联系商务获取。
 */
@property (nonatomic, copy) NSString *licenseKey;

/**
 * 内置证书文件路径
 */
@property (nonatomic, copy) NSString *licenseFile;

/**
 * Queen使用到的资源根目录,保持不变请为nil
 */
@property (nonatomic, copy) NSString *resRootPath;

/**
 * 是否内部自动创建GLContext,如果要处理CVPixelBuffer数据,需要设置为YES,默认为YES。
 */
@property (nonatomic, assign) BOOL withContext;

/**
 * 需要内部自动创建上下文的前提下,需要在创建引擎的时候同步创建GLContext,则设置为YES,默认为NO
 */
@property (nonatomic, assign) BOOL createContextSync;

/**
 * 是否要渲染到屏幕,默认为NO
 */
@property (nonatomic, assign) BOOL toScreen;

/**
 * 是否自动计算图像的inputAngle和outputAngle,默认为NO,API_AVAILABLE(ios(8.0))
 */
@property (nonatomic, assign) BOOL autoSettingImgAngle;

/**
 * 是否运行在自定义线程,默认为YES
 */
@property (nonatomic, assign) BOOL runOnCustomThread;

/**
 * 是否允许数据统计,默认为YES
 */
@property (nonatomic, assign) BOOL enableStats;

/**
 * 预留字段,选填
 */
@property (nonatomic, copy) NSString *extraInfo;

@end

Undocumented

  • licenseKey 在申请 Queen 授权时获得。如果是老版本的客户,之前申请授权时没有收到 licenseKey 的,请联系商务获取。

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull licenseKey;
  • 内置证书文件路径

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull licenseFile;
  • Queen使用到的资源根目录,保持不变请为nil

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull resRootPath;
  • 是否内部自动创建GLContext,如果要处理CVPixelBuffer数据,需要设置为YES,默认为YES。

    Declaration

    Objective-C

    @property (nonatomic) BOOL withContext;
  • 需要内部自动创建上下文的前提下,需要在创建引擎的时候同步创建GLContext,则设置为YES,默认为NO

    Declaration

    Objective-C

    @property (nonatomic) BOOL createContextSync;
  • 是否要渲染到屏幕,默认为NO

    Declaration

    Objective-C

    @property (nonatomic) BOOL toScreen;
  • 是否自动计算图像的inputAngle和outputAngle,默认为NO,API_AVAILABLE(ios(8.0))

    Declaration

    Objective-C

    @property (nonatomic) BOOL autoSettingImgAngle;
  • 是否运行在自定义线程,默认为YES

    Declaration

    Objective-C

    @property (nonatomic) BOOL runOnCustomThread;
  • 是否允许数据统计,默认为YES

    Declaration

    Objective-C

    @property (nonatomic) BOOL enableStats;
  • 预留字段,选填

    Declaration

    Objective-C

    @property (nonatomic, copy) NSString *_Nonnull extraInfo;