Flutter macOS Embedder
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 61 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 }

References _height, and _pixelFormatType.


The documentation for this class was generated from the following file:
_pixelFormatType
OSType _pixelFormatType
Definition: FlutterEmbedderExternalTextureTest.mm:58
_height
size_t _height
Definition: FlutterEmbedderExternalTextureTest.mm:55