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 25 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 39 of file FlutterEmbedderExternalTextureTest.mm.

39  :(size_t)width
40  height:(size_t)height
41  pixelFormatType:(OSType)pixelFormatType {
42  if (self = [super init]) {
43  _width = width;
44  _height = height;
45  _pixelFormatType = pixelFormatType;
46  }
47  return self;
48 }

References _height, and _pixelFormatType.


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