Flutter iOS Embedder
ios_context_noop.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_NOOP_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_NOOP_H_
7 
9 
10 namespace flutter {
11 
12 /// @brief A noop rendering context for usage on simulators without metal support.
13 class IOSContextNoop final : public IOSContext {
14  public:
16 
17  // |IOSContext|
19 
20  // |IOSContext|
21  sk_sp<GrDirectContext> CreateResourceContext() override;
22 
23  // |IOSContext|
24  sk_sp<GrDirectContext> GetMainContext() const override;
25 
26  // |IOSContext|
27  std::unique_ptr<GLContextResult> MakeCurrent() override;
28 
29  // |IOSContext|
30  std::unique_ptr<Texture> CreateExternalTexture(
31  int64_t texture_id,
32  fml::scoped_nsobject<NSObject<FlutterTexture>> texture) override;
33 
34  IOSRenderingBackend GetBackend() const override;
35 
36  private:
37  IOSContextNoop(const IOSContextNoop&) = delete;
38 
39  IOSContextNoop& operator=(const IOSContextNoop&) = delete;
40 };
41 
42 } // namespace flutter
43 
44 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_IOS_CONTEXT_NOOP_H_
flutter::IOSContextNoop::CreateExternalTexture
std::unique_ptr< Texture > CreateExternalTexture(int64_t texture_id, fml::scoped_nsobject< NSObject< FlutterTexture >> texture) override
Creates an external texture proxy of the appropriate client rendering API.
Definition: ios_context_noop.mm:40
flutter::IOSContextNoop
A noop rendering context for usage on simulators without metal support.
Definition: ios_context_noop.h:13
flutter::IOSContextNoop::MakeCurrent
std::unique_ptr< GLContextResult > MakeCurrent() override
When using client rendering APIs whose contexts need to be bound to a specific thread,...
Definition: ios_context_noop.mm:34
flutter::IOSContextNoop::GetBackend
IOSRenderingBackend GetBackend() const override
Get the rendering backend used by this context.
Definition: ios_context_noop.mm:29
flutter::IOSContext
Manages the lifetime of the on-screen and off-screen rendering contexts on iOS. On-screen contexts ar...
Definition: ios_context.h:40
flutter::IOSRenderingBackend
IOSRenderingBackend
Definition: rendering_api_selection.h:19
flutter::IOSContextNoop::CreateResourceContext
sk_sp< GrDirectContext > CreateResourceContext() override
Create a resource context for use on the IO task runner. This resource context is used by Skia to upl...
Definition: ios_context_noop.mm:19
flutter::IOSContextNoop::IOSContextNoop
IOSContextNoop()
flutter
Definition: accessibility_bridge.h:28
flutter::IOSContextNoop::~IOSContextNoop
~IOSContextNoop()
ios_context.h
texture_id
int64_t texture_id
Definition: texture_registrar_unittests.cc:24
flutter::IOSContextNoop::GetMainContext
sk_sp< GrDirectContext > GetMainContext() const override
Accessor for the Skia context associated with IOSSurfaces and the raster thread.
Definition: ios_context_noop.mm:24