Flutter iOS Embedder
ios_context_metal_impeller.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_CONTEXT_METAL_IMPELLER_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_METAL_IMPELLER_H_
7 
8 #include "flutter/fml/macros.h"
9 #include "flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalImpeller.h"
11 #include "impeller/display_list/aiks_context.h"
12 
13 namespace impeller {
14 
15 class Context;
16 
17 } // namespace impeller
18 
19 namespace flutter {
20 
21 class IOSContextMetalImpeller final : public IOSContext {
22  public:
23  explicit IOSContextMetalImpeller(
24  const std::shared_ptr<const fml::SyncSwitch>& is_gpu_disabled_sync_switch);
25 
27 
28  IOSRenderingBackend GetBackend() const override;
29 
30  private:
31  FlutterDarwinContextMetalImpeller* darwin_context_metal_impeller_;
32  std::shared_ptr<impeller::AiksContext> aiks_context_;
33 
34  // |IOSContext|
35  std::unique_ptr<Texture> CreateExternalTexture(int64_t texture_id,
36  NSObject<FlutterTexture>* texture) override;
37 
38  // |IOSContext|
39  std::shared_ptr<impeller::Context> GetImpellerContext() const override;
40 
41  // |IOSContext|
42  std::shared_ptr<impeller::AiksContext> GetAiksContext() const override;
43 
44  FML_DISALLOW_COPY_AND_ASSIGN(IOSContextMetalImpeller);
45 };
46 
47 } // namespace flutter
48 
49 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_METAL_IMPELLER_H_
flutter::IOSContextMetalImpeller
Definition: ios_context_metal_impeller.h:21
flutter::IOSContextMetalImpeller::~IOSContextMetalImpeller
~IOSContextMetalImpeller()
flutter::IOSContext
Manages the lifetime of the on-screen and off-screen rendering contexts on iOS. On-screen contexts ar...
Definition: ios_context.h:38
flutter::IOSRenderingBackend
IOSRenderingBackend
Definition: rendering_api_selection.h:19
flutter
Definition: accessibility_bridge.h:26
flutter::IOSContextMetalImpeller::IOSContextMetalImpeller
IOSContextMetalImpeller(const std::shared_ptr< const fml::SyncSwitch > &is_gpu_disabled_sync_switch)
ios_context.h
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
impeller
Definition: ios_context.h:19
flutter::IOSContextMetalImpeller::GetBackend
IOSRenderingBackend GetBackend() const override
Get the rendering backend used by this context.