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
41 lines
1.3 KiB
C++
41 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.
|
|
|
|
#include "flutter/flow/layers/shader_mask_layer.h"
|
|
|
|
namespace flutter {
|
|
|
|
ShaderMaskLayer::ShaderMaskLayer(sk_sp<SkShader> shader,
|
|
const SkRect& mask_rect,
|
|
SkBlendMode blend_mode)
|
|
: shader_(shader), mask_rect_(mask_rect), blend_mode_(blend_mode) {}
|
|
|
|
void ShaderMaskLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) {
|
|
#if defined(LEGACY_FUCHSIA_EMBEDDER)
|
|
CheckForChildLayerBelow(context);
|
|
#endif
|
|
|
|
Layer::AutoPrerollSaveLayerState save =
|
|
Layer::AutoPrerollSaveLayerState::Create(context);
|
|
ContainerLayer::Preroll(context, matrix);
|
|
}
|
|
|
|
void ShaderMaskLayer::Paint(PaintContext& context) const {
|
|
TRACE_EVENT0("flutter", "ShaderMaskLayer::Paint");
|
|
FML_DCHECK(needs_painting());
|
|
|
|
Layer::AutoSaveLayer save =
|
|
Layer::AutoSaveLayer::Create(context, paint_bounds(), nullptr);
|
|
PaintChildren(context);
|
|
|
|
SkPaint paint;
|
|
paint.setBlendMode(blend_mode_);
|
|
paint.setShader(shader_);
|
|
context.leaf_nodes_canvas->translate(mask_rect_.left(), mask_rect_.top());
|
|
context.leaf_nodes_canvas->drawRect(
|
|
SkRect::MakeWH(mask_rect_.width(), mask_rect_.height()), paint);
|
|
}
|
|
|
|
} // namespace flutter
|