Flutter iOS Embedder
ios_context_metal_impeller.mm
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 
6 
7 #include "flutter/impeller/entity/mtl/entity_shaders.h"
9 #include "impeller/display_list/aiks_context.h"
10 #include "impeller/typographer/backends/skia/typographer_context_skia.h"
11 
13 
14 namespace flutter {
15 
17  const std::shared_ptr<const fml::SyncSwitch>& is_gpu_disabled_sync_switch)
18  : darwin_context_metal_impeller_(
19  [[FlutterDarwinContextMetalImpeller alloc] init:is_gpu_disabled_sync_switch]) {
20  if (darwin_context_metal_impeller_.context) {
21  aiks_context_ = std::make_shared<impeller::AiksContext>(
22  darwin_context_metal_impeller_.context, impeller::TypographerContextSkia::Make());
23  }
24 }
25 
27 
30 }
31 
32 // |IOSContext|
33 std::shared_ptr<impeller::Context> IOSContextMetalImpeller::GetImpellerContext() const {
34  return darwin_context_metal_impeller_.context;
35 }
36 
37 // |IOSContext|
38 std::shared_ptr<impeller::AiksContext> IOSContextMetalImpeller::GetAiksContext() const {
39  return aiks_context_;
40 }
41 
42 // |IOSContext|
43 std::unique_ptr<Texture> IOSContextMetalImpeller::CreateExternalTexture(
44  int64_t texture_id,
45  NSObject<FlutterTexture>* texture) {
46  return std::make_unique<IOSExternalTextureMetal>([darwin_context_metal_impeller_
47  createExternalTextureWithIdentifier:texture_id
48  texture:texture]);
49 }
50 
51 } // namespace flutter
flutter::IOSContextMetalImpeller::~IOSContextMetalImpeller
~IOSContextMetalImpeller()
ios_context_metal_impeller.h
flutter::IOSRenderingBackend
IOSRenderingBackend
Definition: rendering_api_selection.h:19
flutter::IOSRenderingBackend::kImpeller
@ kImpeller
flutter
Definition: accessibility_bridge.h:26
ios_external_texture_metal.h
flutter::IOSContextMetalImpeller::IOSContextMetalImpeller
IOSContextMetalImpeller(const std::shared_ptr< const fml::SyncSwitch > &is_gpu_disabled_sync_switch)
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
FLUTTER_ASSERT_ARC
Definition: FlutterChannelKeyResponder.mm:13
flutter::IOSContextMetalImpeller::GetBackend
IOSRenderingBackend GetBackend() const override
Get the rendering backend used by this context.