Flutter iOS Embedder
ios_surface.h
Go to the documentation of this file.
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_SURFACE_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_SURFACE_H_
7 
9 
10 #include <memory>
11 
12 #include "flutter/flow/embedded_views.h"
13 #include "flutter/flow/surface.h"
14 #include "flutter/fml/macros.h"
15 #include "flutter/fml/platform/darwin/scoped_nsobject.h"
16 
17 @class CALayer;
18 
19 namespace flutter {
20 
21 class IOSSurface {
22  public:
23  static std::unique_ptr<IOSSurface> Create(std::shared_ptr<IOSContext> context,
24  const fml::scoped_nsobject<CALayer>& layer);
25 
26  std::shared_ptr<IOSContext> GetContext() const;
27 
28  virtual ~IOSSurface();
29 
30  virtual bool IsValid() const = 0;
31 
32  virtual void UpdateStorageSizeIfNecessary() = 0;
33 
34  // Creates a GPU surface. If no GrDirectContext is supplied and the rendering mode
35  // supports one, a new one will be created; otherwise, the software backend
36  // will be used.
37  //
38  // If a GrDirectContext is supplied, creates a secondary surface.
39  virtual std::unique_ptr<Surface> CreateGPUSurface(GrDirectContext* gr_context = nullptr) = 0;
40 
41  protected:
42  explicit IOSSurface(std::shared_ptr<IOSContext> ios_context);
43 
44  private:
45  std::shared_ptr<IOSContext> ios_context_;
46 
47  FML_DISALLOW_COPY_AND_ASSIGN(IOSSurface);
48 };
49 
50 } // namespace flutter
51 
52 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_SURFACE_H_
flutter::IOSSurface::CreateGPUSurface
virtual std::unique_ptr< Surface > CreateGPUSurface(GrDirectContext *gr_context=nullptr)=0
flutter::IOSSurface
Definition: ios_surface.h:21
flutter::IOSSurface::IOSSurface
IOSSurface(std::shared_ptr< IOSContext > ios_context)
Definition: ios_surface.mm:55
flutter
Definition: accessibility_bridge.h:28
FlutterPlatformViews_Internal.h
flutter::IOSSurface::GetContext
std::shared_ptr< IOSContext > GetContext() const
Definition: ios_surface.mm:62
flutter::IOSSurface::Create
static std::unique_ptr< IOSSurface > Create(std::shared_ptr< IOSContext > context, const fml::scoped_nsobject< CALayer > &layer)
Definition: ios_surface.mm:19
flutter::IOSSurface::~IOSSurface
virtual ~IOSSurface()
flutter::IOSSurface::IsValid
virtual bool IsValid() const =0
flutter::IOSSurface::UpdateStorageSizeIfNecessary
virtual void UpdateStorageSizeIfNecessary()=0