mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
85953615eb
Currently helps primarily on iOS when no BackdropFilter is present by lowering energy usage
72 lines
1.5 KiB
C++
72 lines
1.5 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.
|
|
|
|
#include "flutter/shell/common/surface.h"
|
|
|
|
#include "flutter/fml/logging.h"
|
|
#include "third_party/skia/include/core/SkSurface.h"
|
|
|
|
namespace flutter {
|
|
|
|
SurfaceFrame::SurfaceFrame(sk_sp<SkSurface> surface,
|
|
bool supports_readback,
|
|
const SubmitCallback& submit_callback)
|
|
: submitted_(false),
|
|
surface_(surface),
|
|
supports_readback_(supports_readback),
|
|
submit_callback_(submit_callback) {
|
|
FML_DCHECK(submit_callback_);
|
|
}
|
|
|
|
SurfaceFrame::~SurfaceFrame() {
|
|
if (submit_callback_ && !submitted_) {
|
|
// Dropping without a Submit.
|
|
submit_callback_(*this, nullptr);
|
|
}
|
|
}
|
|
|
|
bool SurfaceFrame::Submit() {
|
|
if (submitted_) {
|
|
return false;
|
|
}
|
|
|
|
submitted_ = PerformSubmit();
|
|
|
|
return submitted_;
|
|
}
|
|
|
|
SkCanvas* SurfaceFrame::SkiaCanvas() {
|
|
return surface_ != nullptr ? surface_->getCanvas() : nullptr;
|
|
}
|
|
|
|
sk_sp<SkSurface> SurfaceFrame::SkiaSurface() const {
|
|
return surface_;
|
|
}
|
|
|
|
bool SurfaceFrame::PerformSubmit() {
|
|
if (submit_callback_ == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (submit_callback_(*this, SkiaCanvas())) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
Surface::Surface() = default;
|
|
|
|
Surface::~Surface() = default;
|
|
|
|
flutter::ExternalViewEmbedder* Surface::GetExternalViewEmbedder() {
|
|
return nullptr;
|
|
}
|
|
|
|
bool Surface::MakeRenderContextCurrent() {
|
|
return true;
|
|
}
|
|
|
|
} // namespace flutter
|