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

#include <FlutterBackingStore.h>

Inheritance diagram for FlutterRenderBackingStore:

Instance Methods

(nonnull instancetype) - initWithTexture:
 
(instancetype) - initWithTexture: [implementation]
 

Properties

id< MTLTexture > texture
 

Detailed Description

Interface for backing store handles. Typically contain references to the buffers that are handed by the FlutterView to the FlutterRenderer.

Definition at line 15 of file FlutterBackingStore.h.

Method Documentation

◆ initWithTexture: [1/2]

- (instancetype) initWithTexture: (id<MTLTexture>)  texture
implementation

Definition at line 1 of file FlutterBackingStore.mm.

9 :(id<MTLTexture>)texture {
10 self = [super init];
11 if (self) {
13 }
14 return self;
15}
id< FlutterTexture > _texture

◆ initWithTexture: [2/2]

- (nonnull instancetype) initWithTexture: (nonnull id< MTLTexture >)  texture

Initializes a backing store with the specified MTLTexture.

Property Documentation

◆ texture

- (id<MTLTexture>) texture
readnonatomicassign

MTLTexture referenced by this backing store instance.

Definition at line 20 of file FlutterBackingStore.h.


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