Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Instance Methods | List of all members
FlutterExternalTexture Class Reference

#include <FlutterExternalTexture.h>

Inheritance diagram for FlutterExternalTexture:

Instance Methods

(nonnull instancetype) - initWithFlutterTexture:darwinMetalContext:
 
(int64_t) - textureID
 
(BOOL- populateTexture:
 
(instancetype) - initWithFlutterTexture:darwinMetalContext: [implementation]
 
(BOOL- populateTexture: [implementation]
 
(BOOL- populateTextureFromYUVAPixelBuffer:textureOut: [implementation]
 
(BOOL- populateTextureFromRGBAPixelBuffer:textureOut: [implementation]
 

Detailed Description

Embedding side texture wrappers for Metal external textures. Used to bridge FlutterTexture object and handle the texture copy request the Flutter engine.

Definition at line 18 of file FlutterExternalTexture.h.

Method Documentation

◆ initWithFlutterTexture:darwinMetalContext: [1/2]

- (instancetype) initWithFlutterTexture: (id<FlutterTexture>)  texture
darwinMetalContext: (FlutterDarwinContextMetalSkia*)  context 
implementation

Definition at line 16 of file FlutterExternalTexture.mm.

19 :(id<FlutterTexture>)texture
20 darwinMetalContext:(FlutterDarwinContextMetalSkia*)context {
21 self = [super init];
22 if (self) {
24 _textureID = reinterpret_cast<int64_t>(_texture);
25 _darwinMetalContext = context;
26 }
27 return self;
28}
id< FlutterTexture > _texture
int64_t _textureID
FlTexture * texture
init(device_serial, adb_binary)
Definition _adb_path.py:12

◆ initWithFlutterTexture:darwinMetalContext: [2/2]

- (nonnull instancetype) initWithFlutterTexture: (nonnull id< FlutterTexture >)  texture
darwinMetalContext: (nonnull FlutterDarwinContextMetalSkia *)  context 

Initializes a texture adapter with |texture|.

◆ populateTexture: [1/2]

- (BOOL) populateTexture: (FlutterMetalExternalTexture*)  textureOut
implementation

Definition at line 16 of file FlutterExternalTexture.mm.

34 :(FlutterMetalExternalTexture*)textureOut {
35 // Copy the pixel buffer from the FlutterTexture instance implemented on the user side.
36 fml::CFRef<CVPixelBufferRef> pixelBuffer([_texture copyPixelBuffer]);
37
38 if (!pixelBuffer) {
39 return NO;
40 }
41
42 OSType pixel_format = CVPixelBufferGetPixelFormatType(pixelBuffer);
43 if (pixel_format == kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange ||
44 pixel_format == kCVPixelFormatType_420YpCbCr8BiPlanarFullRange) {
45 return [self populateTextureFromYUVAPixelBuffer:pixelBuffer textureOut:textureOut];
46 } else if (pixel_format == kCVPixelFormatType_32BGRA) {
47 return [self populateTextureFromRGBAPixelBuffer:pixelBuffer textureOut:textureOut];
48 } else {
49 NSLog(@"Unsupported pixel format: %d", pixel_format);
50 return NO;
51 }
52}

◆ populateTexture: [2/2]

- (BOOL) populateTexture: (nonnull FlutterMetalExternalTexture *)  metalTexture

Accepts texture buffer copy request from the Flutter engine. When the user side marks the textureID as available, the Flutter engine will callback to this method and ask for populate the |metalTexture| object, such as the texture type and the format of the pixel buffer and the texture object.

◆ populateTextureFromRGBAPixelBuffer:textureOut:

- (BOOL) populateTextureFromRGBAPixelBuffer: (nonnull CVPixelBufferRef)  pixelBuffer
textureOut: (nonnull FlutterMetalExternalTexture*)  textureOut 
implementation

Definition at line 16 of file FlutterExternalTexture.mm.

112 :(nonnull CVPixelBufferRef)pixelBuffer
113 textureOut:(nonnull FlutterMetalExternalTexture*)textureOut {
114 SkISize textureSize =
115 SkISize::Make(CVPixelBufferGetWidth(pixelBuffer), CVPixelBufferGetHeight(pixelBuffer));
116
117 CVMetalTextureRef cvMetalTexture = nullptr;
118 CVReturn cvReturn =
119 CVMetalTextureCacheCreateTextureFromImage(/*allocator=*/kCFAllocatorDefault,
120 /*textureCache=*/_darwinMetalContext.textureCache,
121 /*sourceImage=*/pixelBuffer,
122 /*textureAttributes=*/nullptr,
123 /*pixelFormat=*/MTLPixelFormatBGRA8Unorm,
124 /*width=*/textureSize.width(),
125 /*height=*/textureSize.height(),
126 /*planeIndex=*/0u,
127 /*texture=*/&cvMetalTexture);
128
129 if (cvReturn != kCVReturnSuccess) {
130 NSLog(@"Could not create Metal texture from pixel buffer: CVReturn %d", cvReturn);
131 return NO;
132 }
133
134 _textures = {(__bridge FlutterMetalTextureHandle)CVMetalTextureGetTexture(cvMetalTexture)};
135 CVBufferRelease(cvMetalTexture);
136
137 textureOut->num_textures = 1;
138 textureOut->height = textureSize.height();
139 textureOut->width = textureSize.width();
140 textureOut->pixel_format = FlutterMetalExternalTexturePixelFormat::kRGBA;
141 textureOut->textures = _textures.data();
142
143 return YES;
144}
std::vector< FlutterMetalTextureHandle > _textures
static std::unique_ptr< SkEncoder > Make(SkWStream *dst, const SkPixmap *src, const SkYUVAPixmaps *srcYUVA, const SkColorSpace *srcYUVAColorSpace, const SkJpegEncoder::Options &options)
@ kRGBA
Definition embedder.h:605
const void * FlutterMetalTextureHandle
Alias for id<MTLTexture>.
Definition embedder.h:600

◆ populateTextureFromYUVAPixelBuffer:textureOut:

- (BOOL) populateTextureFromYUVAPixelBuffer: (nonnull CVPixelBufferRef)  pixelBuffer
textureOut: (nonnull FlutterMetalExternalTexture*)  textureOut 
implementation

Definition at line 16 of file FlutterExternalTexture.mm.

54 :(nonnull CVPixelBufferRef)pixelBuffer
55 textureOut:(nonnull FlutterMetalExternalTexture*)textureOut {
56 CVMetalTextureRef yCVMetalTexture = nullptr;
57 CVMetalTextureRef uvCVMetalTextureRef = nullptr;
58 SkISize textureSize =
59 SkISize::Make(CVPixelBufferGetWidth(pixelBuffer), CVPixelBufferGetHeight(pixelBuffer));
60
61 CVReturn yCVReturn = CVMetalTextureCacheCreateTextureFromImage(
62 /*allocator=*/kCFAllocatorDefault,
63 /*textureCache=*/_darwinMetalContext.textureCache,
64 /*sourceImage=*/pixelBuffer,
65 /*textureAttributes=*/nullptr,
66 /*pixelFormat=*/MTLPixelFormatR8Unorm,
67 /*width=*/CVPixelBufferGetWidthOfPlane(pixelBuffer, 0u),
68 /*height=*/CVPixelBufferGetHeightOfPlane(pixelBuffer, 0u),
69 /*planeIndex=*/0u,
70 /*texture=*/&yCVMetalTexture);
71
72 if (yCVReturn != kCVReturnSuccess) {
73 NSLog(@"Could not create Metal texture from pixel buffer: CVReturn %d", yCVReturn);
74 return NO;
75 }
76
77 CVReturn uvCVReturn = CVMetalTextureCacheCreateTextureFromImage(
78 /*allocator=*/kCFAllocatorDefault,
79 /*textureCache=*/_darwinMetalContext.textureCache,
80 /*sourceImage=*/pixelBuffer,
81 /*textureAttributes=*/nullptr,
82 /*pixelFormat=*/MTLPixelFormatRG8Unorm,
83 /*width=*/CVPixelBufferGetWidthOfPlane(pixelBuffer, 1u),
84 /*height=*/CVPixelBufferGetHeightOfPlane(pixelBuffer, 1u),
85 /*planeIndex=*/1u,
86 /*texture=*/&uvCVMetalTextureRef);
87
88 if (uvCVReturn != kCVReturnSuccess) {
89 CVBufferRelease(yCVMetalTexture);
90 NSLog(@"Could not create Metal texture from pixel buffer: CVReturn %d", uvCVReturn);
91 return NO;
92 }
93
94 _textures = {(__bridge FlutterMetalTextureHandle)CVMetalTextureGetTexture(yCVMetalTexture),
95 (__bridge FlutterMetalTextureHandle)CVMetalTextureGetTexture(uvCVMetalTextureRef)};
96 CVBufferRelease(yCVMetalTexture);
97 CVBufferRelease(uvCVMetalTextureRef);
98
99 textureOut->num_textures = 2;
100 textureOut->height = textureSize.height();
101 textureOut->width = textureSize.width();
102 textureOut->pixel_format = FlutterMetalExternalTexturePixelFormat::kYUVA;
103 textureOut->textures = _textures.data();
104 OSType pixel_format = CVPixelBufferGetPixelFormatType(pixelBuffer);
105 textureOut->yuv_color_space = pixel_format == kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange
108
109 return YES;
110}
@ kBT601LimitedRange
Definition embedder.h:611
@ kBT601FullRange
Definition embedder.h:610
@ kYUVA
Definition embedder.h:604
static constexpr SkISize Make(int32_t w, int32_t h)
Definition SkSize.h:20
constexpr int32_t width() const
Definition SkSize.h:36
constexpr int32_t height() const
Definition SkSize.h:37

◆ textureID

- (int64_t) textureID

Returns the ID for the FlutterExternalTexture instance.

Definition at line 16 of file FlutterExternalTexture.mm.

30 {
31 return _textureID;
32}

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