BNBEglContext
Objective-C
@interface BNBEglContext : NSObject
+ (nullable BNBEglContext *)create:(int32_t)width
height:(int32_t)height;
- (BOOL)check;
- (void)activate;
- (void)deactivate;
@end
Swift
class BNBEglContext : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
+ (nullable BNBEglContext *)create:(int32_t)width height:(int32_t)height;Swift
class func create(_ width: Int32, height: Int32) -> BNBEglContext? -
Undocumented
Declaration
Objective-C
- (BOOL)check;Swift
func check() -> Bool -
Undocumented
Declaration
Objective-C
- (void)activate;Swift
func activate() -
Undocumented
Declaration
Objective-C
- (void)deactivate;Swift
func deactivate()
BNBEglContext Class Reference