mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Re-land "Support multiple shells in a single process. (#4932)" This reverts commit 723c7d01439da4261bc836075fb55651ce9e7f03.
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
// Copyright 2018 The Fuchsia Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#pragma once
|
|
|
|
#include "compositor_context.h"
|
|
#include "flutter/fml/memory/weak_ptr.h"
|
|
#include "flutter/shell/common/surface.h"
|
|
#include "lib/fxl/macros.h"
|
|
|
|
namespace flutter {
|
|
|
|
// The interface between the Flutter rasterizer and the underlying platform. May
|
|
// be constructed on any thread but will be used by the engine only on the GPU
|
|
// thread.
|
|
class Surface final : public shell::Surface {
|
|
public:
|
|
Surface(const ui::ScenicPtr& scenic,
|
|
std::string debug_label,
|
|
zx::eventpair import_token,
|
|
OnMetricsUpdate session_metrics_did_change_callback,
|
|
fxl::Closure session_error_callback);
|
|
|
|
~Surface() override;
|
|
|
|
private:
|
|
const bool valid_ = CanConnectToDisplay();
|
|
const std::string debug_label_;
|
|
std::unique_ptr<CompositorContext> compositor_context_;
|
|
|
|
// |shell::Surface|
|
|
bool IsValid() override;
|
|
|
|
// |shell::Surface|
|
|
std::unique_ptr<shell::SurfaceFrame> AcquireFrame(
|
|
const SkISize& size) override;
|
|
|
|
// |shell::Surface|
|
|
GrContext* GetContext() override;
|
|
|
|
static bool CanConnectToDisplay();
|
|
|
|
FXL_DISALLOW_COPY_AND_ASSIGN(Surface);
|
|
};
|
|
|
|
} // namespace flutter
|