Flutter macOS Embedder
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
TestExternalTexture Class Reference
Inheritance diagram for TestExternalTexture:
<FlutterTexture>

Instance Methods

(nonnull instancetype) - initWidth:height:pixelFormatType:
 
- Instance Methods inherited from <FlutterTexture>
(CVPixelBufferRef _Nullable) - copyPixelBuffer
 
(void) - onTextureUnregistered:
 

Detailed Description

Definition at line 47 of file FlutterEmbedderExternalTextureTest.mm.

Method Documentation

◆ initWidth:height:pixelFormatType:

- (nonnull instancetype) initWidth: (size_t)  width
height: (size_t)  height
pixelFormatType: (OSType)  pixelFormatType 

Definition at line 58 of file FlutterEmbedderExternalTextureTest.mm.

61  :(size_t)width
62  height:(size_t)height
63  pixelFormatType:(OSType)pixelFormatType {
64  if (self = [super init]) {
65  _width = width;
66  _height = height;
67  _pixelFormatType = pixelFormatType;
68  }
69  return self;
70 }

The documentation for this class was generated from the following file: