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 48 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 59 of file FlutterEmbedderExternalTextureTest.mm.

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

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