mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Switching the calls to dispatch into an Impeller Dispatcher to use a cull rect to enable pre-culling of the out-of-bounds ops. This change showed an improvement of around 2x on the rendering performance of the non-intersecting platform view benchmark, but that was measured without the recent changes to the destructive blend modes in Impeller renderer.
85 lines
2.1 KiB
C++
85 lines
2.1 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/flow/surface_frame.h"
|
|
|
|
#include <limits>
|
|
#include <utility>
|
|
|
|
#include "flutter/fml/logging.h"
|
|
#include "flutter/fml/trace_event.h"
|
|
|
|
#include "third_party/skia/include/core/SkSurface.h"
|
|
#include "third_party/skia/include/utils/SkNWayCanvas.h"
|
|
|
|
namespace flutter {
|
|
|
|
SurfaceFrame::SurfaceFrame(sk_sp<SkSurface> surface,
|
|
FramebufferInfo framebuffer_info,
|
|
const SubmitCallback& submit_callback,
|
|
SkISize frame_size,
|
|
std::unique_ptr<GLContextResult> context_result,
|
|
bool display_list_fallback)
|
|
: surface_(std::move(surface)),
|
|
framebuffer_info_(framebuffer_info),
|
|
submit_callback_(submit_callback),
|
|
context_result_(std::move(context_result)) {
|
|
FML_DCHECK(submit_callback_);
|
|
if (surface_) {
|
|
adapter_.set_canvas(surface_->getCanvas());
|
|
canvas_ = &adapter_;
|
|
} else if (display_list_fallback) {
|
|
FML_DCHECK(!frame_size.isEmpty());
|
|
dl_builder_ =
|
|
sk_make_sp<DisplayListBuilder>(SkRect::Make(frame_size), true);
|
|
canvas_ = dl_builder_.get();
|
|
}
|
|
}
|
|
|
|
bool SurfaceFrame::Submit() {
|
|
TRACE_EVENT0("flutter", "SurfaceFrame::Submit");
|
|
if (submitted_) {
|
|
return false;
|
|
}
|
|
|
|
submitted_ = PerformSubmit();
|
|
|
|
return submitted_;
|
|
}
|
|
|
|
bool SurfaceFrame::IsSubmitted() const {
|
|
return submitted_;
|
|
}
|
|
|
|
DlCanvas* SurfaceFrame::Canvas() {
|
|
return canvas_;
|
|
}
|
|
|
|
sk_sp<SkSurface> SurfaceFrame::SkiaSurface() const {
|
|
return surface_;
|
|
}
|
|
|
|
bool SurfaceFrame::PerformSubmit() {
|
|
if (submit_callback_ == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
if (submit_callback_(*this, Canvas())) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
sk_sp<DisplayListBuilder> SurfaceFrame::GetDisplayListBuilder() {
|
|
return dl_builder_;
|
|
}
|
|
|
|
sk_sp<DisplayList> SurfaceFrame::BuildDisplayList() {
|
|
TRACE_EVENT0("impeller", "SurfaceFrame::BuildDisplayList");
|
|
return dl_builder_ ? dl_builder_->Build() : nullptr;
|
|
}
|
|
|
|
} // namespace flutter
|