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 24 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 38 of file FlutterEmbedderExternalTextureTest.mm.

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

References _height, and _pixelFormatType.


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