mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
f2dbeb8aa7
This reverts commit6ea69a0d43. On top of the revert, it reverted a commit in the PR: https://github.com/flutter/engine/pull/14024 This reverts commitea67e5b0b9.
47 lines
1.2 KiB
C++
47 lines
1.2 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.
|
|
|
|
#ifndef FLUTTER_LIB_UI_PAINTING_ENGINE_LAYER_H_
|
|
#define FLUTTER_LIB_UI_PAINTING_ENGINE_LAYER_H_
|
|
|
|
#include "flutter/lib/ui/dart_wrapper.h"
|
|
|
|
#include "flutter/flow/layers/container_layer.h"
|
|
|
|
namespace tonic {
|
|
class DartLibraryNatives;
|
|
} // namespace tonic
|
|
|
|
namespace flutter {
|
|
|
|
class EngineLayer;
|
|
|
|
class EngineLayer : public RefCountedDartWrappable<EngineLayer> {
|
|
DEFINE_WRAPPERTYPEINFO();
|
|
|
|
public:
|
|
~EngineLayer() override;
|
|
|
|
size_t GetAllocationSize() override;
|
|
|
|
static fml::RefPtr<EngineLayer> MakeRetained(
|
|
std::shared_ptr<flutter::ContainerLayer> layer) {
|
|
return fml::MakeRefCounted<EngineLayer>(layer);
|
|
}
|
|
|
|
static void RegisterNatives(tonic::DartLibraryNatives* natives);
|
|
|
|
std::shared_ptr<flutter::ContainerLayer> Layer() const { return layer_; }
|
|
|
|
private:
|
|
explicit EngineLayer(std::shared_ptr<flutter::ContainerLayer> layer);
|
|
std::shared_ptr<flutter::ContainerLayer> layer_;
|
|
|
|
FML_FRIEND_MAKE_REF_COUNTED(EngineLayer);
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_UI_PAINTING_ENGINE_LAYER_H_
|