Flutter Engine
 
Loading...
Searching...
No Matches
cover_geometry.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
6
8
9namespace impeller {
10
12
13GeometryResult CoverGeometry::GetPositionBuffer(const ContentContext& renderer,
14 const Entity& entity,
15 RenderPass& pass) const {
16 auto rect = Rect::MakeSize(pass.GetRenderTargetSize());
17 constexpr uint16_t kRectIndicies[4] = {0, 1, 2, 3};
18 auto& data_host_buffer = renderer.GetTransientsDataBuffer();
19 auto& indexes_host_buffer = renderer.GetTransientsIndexesBuffer();
20 return GeometryResult{
22 .vertex_buffer =
23 {
24 .vertex_buffer = data_host_buffer.Emplace(
25 rect.GetTransformedPoints(entity.GetTransform().Invert())
26 .data(),
27 8 * sizeof(float), alignof(float)),
28 .index_buffer = indexes_host_buffer.Emplace(
29 kRectIndicies, 4 * sizeof(uint16_t), alignof(uint16_t)),
30 .vertex_count = 4,
31 .index_type = IndexType::k16bit,
32 },
33 .transform = entity.GetShaderTransform(pass),
34 };
35}
36
37std::optional<Rect> CoverGeometry::GetCoverage(const Matrix& transform) const {
38 return Rect::MakeMaximum();
39}
40
42 const Rect& rect) const {
43 return true;
44}
45
47 return false;
48}
49
50} // namespace impeller
bool CanApplyMaskFilter() const override
bool CoversArea(const Matrix &transform, const Rect &rect) const override
Determines if this geometry, transformed by the given transform, will completely cover all surface ar...
A 4x4 matrix using column-major storage.
Definition matrix.h:37
static constexpr TRect MakeSize(const TSize< U > &size)
Definition rect.h:150
static constexpr TRect MakeMaximum()
Definition rect.h:188