mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Additionally create "_next" permutations for all of the test binaries on Fuchsia, in order to test both code-paths. Using the #define follow-up CLs can also create a flutter_runner_next binary that does not contain any legacy integration code. BUG: 53847
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
// Copyright 2013 The Flutter 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 "flutter/flow/surface.h"
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/fml/memory/weak_ptr.h"
|
|
|
|
namespace flutter_runner {
|
|
|
|
// 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
|
|
// raster thread.
|
|
class Surface final : public flutter::Surface {
|
|
public:
|
|
Surface(std::string debug_label,
|
|
flutter::ExternalViewEmbedder* view_embedder);
|
|
|
|
~Surface() override;
|
|
|
|
private:
|
|
const bool valid_ = CanConnectToDisplay();
|
|
const std::string debug_label_;
|
|
flutter::ExternalViewEmbedder* view_embedder_;
|
|
|
|
// |flutter::Surface|
|
|
bool IsValid() override;
|
|
|
|
// |flutter::Surface|
|
|
std::unique_ptr<flutter::SurfaceFrame> AcquireFrame(
|
|
const SkISize& size) override;
|
|
|
|
// |flutter::Surface|
|
|
GrContext* GetContext() override;
|
|
|
|
// |flutter::Surface|
|
|
SkMatrix GetRootTransformation() const override;
|
|
|
|
// |flutter::Surface|
|
|
flutter::ExternalViewEmbedder* GetExternalViewEmbedder() override;
|
|
|
|
static bool CanConnectToDisplay();
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(Surface);
|
|
};
|
|
|
|
} // namespace flutter_runner
|