Flutter iOS Embedder
flutter::IOSSurfaceNoop Class Referencefinal

A rendering surface that accepts rendering intent but does not render anything. More...

#include <ios_surface_noop.h>

Inheritance diagram for flutter::IOSSurfaceNoop:
flutter::IOSSurface

Public Member Functions

 IOSSurfaceNoop (std::shared_ptr< IOSContext > context)
 
 ~IOSSurfaceNoop () override
 
bool IsValid () const override
 
void UpdateStorageSizeIfNecessary () override
 
std::unique_ptr< Surface > CreateGPUSurface () override
 
- Public Member Functions inherited from flutter::IOSSurface
std::shared_ptr< IOSContextGetContext () const
 
virtual ~IOSSurface ()
 

Additional Inherited Members

- Static Public Member Functions inherited from flutter::IOSSurface
static std::unique_ptr< IOSSurfaceCreate (std::shared_ptr< IOSContext > context, CALayer *layer)
 
- Protected Member Functions inherited from flutter::IOSSurface
 IOSSurface (std::shared_ptr< IOSContext > ios_context)
 

Detailed Description

A rendering surface that accepts rendering intent but does not render anything.

This is useful for running on platforms that need an engine instance and don't have the required drivers.

Definition at line 20 of file ios_surface_noop.h.

Constructor & Destructor Documentation

◆ IOSSurfaceNoop()

flutter::IOSSurfaceNoop::IOSSurfaceNoop ( std::shared_ptr< IOSContext context)
explicit

Definition at line 20 of file ios_surface_noop.mm.

21  : IOSSurface(std::move(context)) {}

◆ ~IOSSurfaceNoop()

flutter::IOSSurfaceNoop::~IOSSurfaceNoop ( )
overridedefault

Member Function Documentation

◆ CreateGPUSurface()

std::unique_ptr< Surface > flutter::IOSSurfaceNoop::CreateGPUSurface ( )
overridevirtual

Implements flutter::IOSSurface.

Definition at line 31 of file ios_surface_noop.mm.

31  {
32  return std::make_unique<GPUSurfaceNoop>();
33 }

◆ IsValid()

bool flutter::IOSSurfaceNoop::IsValid ( ) const
overridevirtual

Implements flutter::IOSSurface.

Definition at line 25 of file ios_surface_noop.mm.

25  {
26  return true;
27 }

◆ UpdateStorageSizeIfNecessary()

void flutter::IOSSurfaceNoop::UpdateStorageSizeIfNecessary ( )
overridevirtual

Implements flutter::IOSSurface.

Definition at line 29 of file ios_surface_noop.mm.

29 {}

The documentation for this class was generated from the following files:
flutter::IOSSurface::IOSSurface
IOSSurface(std::shared_ptr< IOSContext > ios_context)
Definition: ios_surface.mm:39