Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
ClearOp.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
9
16
17namespace {
18
19bool contains_scissor(const GrScissorState& a, const GrScissorState& b) {
20 return !a.enabled() || (b.enabled() && a.rect().contains(b.rect()));
21}
22
23} // anonymous namespace
24
25namespace skgpu::ganesh {
26
28 const GrScissorState& scissor,
29 std::array<float, 4> color) {
30 return GrOp::Make<ClearOp>(context, Buffer::kColor, scissor, color, false);
31}
32
34 const GrScissorState& scissor,
35 bool insideMask) {
36 return GrOp::Make<ClearOp>(context,
37 Buffer::kStencilClip,
38 scissor,
39 std::array<float, 4>(),
40 insideMask);
41}
42
43ClearOp::ClearOp(Buffer buffer,
44 const GrScissorState& scissor,
45 std::array<float, 4> color,
46 bool insideMask)
47 : GrOp(ClassID())
48 , fScissor(scissor)
49 , fColor(color)
50 , fStencilInsideMask(insideMask)
51 , fBuffer(buffer) {
53}
54
56 auto other = t->cast<ClearOp>();
57
58 if (other->fBuffer == fBuffer) {
59 // This could be much more complicated. Currently we look at cases where the new clear
60 // contains the old clear, or when the new clear is a subset of the old clear and they clear
61 // to the same value (color or stencil mask depending on target).
62 if (contains_scissor(other->fScissor, fScissor)) {
63 fScissor = other->fScissor;
64 fColor = other->fColor;
65 fStencilInsideMask = other->fStencilInsideMask;
67 } else if (other->fColor == fColor && other->fStencilInsideMask == fStencilInsideMask &&
68 contains_scissor(fScissor, other->fScissor)) {
70 }
71 } else if (other->fScissor == fScissor) {
72 // When the scissors are the exact same but the buffers are different, we can combine and
73 // clear both stencil and clear together in onExecute().
74 if (other->fBuffer & Buffer::kColor) {
75 fColor = other->fColor;
76 }
77 if (other->fBuffer & Buffer::kStencilClip) {
78 fStencilInsideMask = other->fStencilInsideMask;
79 }
80 fBuffer = Buffer::kBoth;
82 }
84}
85
86void ClearOp::onExecute(GrOpFlushState* state, const SkRect& chainBounds) {
87 SkASSERT(state->opsRenderPass());
88 if (fBuffer & Buffer::kColor) {
89 state->opsRenderPass()->clear(fScissor, fColor);
90 }
91
92 if (fBuffer & Buffer::kStencilClip) {
93 state->opsRenderPass()->clearStencilClip(fScissor, fStencilInsideMask);
94 }
95}
96
97} // namespace skgpu::ganesh
SkColor4f color
#define SkASSERT(cond)
Definition SkAssert.h:116
Definition GrOp.h:70
CombineResult
Definition GrOp.h:99
std::unique_ptr< GrOp > Owner
Definition GrOp.h:72
const T & cast() const
Definition GrOp.h:148
void setBounds(const SkRect &newBounds, HasAABloat aabloat, IsHairline zeroArea)
Definition GrOp.h:279
const SkIRect & rect() const
CombineResult onCombineIfPossible(GrOp *t, SkArenaAlloc *, const GrCaps &caps) override
Definition ClearOp.cpp:55
void onExecute(GrOpFlushState *state, const SkRect &chainBounds) override
Definition ClearOp.cpp:86
static GrOp::Owner MakeStencilClip(GrRecordingContext *context, const GrScissorState &scissor, bool insideMask)
Definition ClearOp.cpp:33
const std::array< float, 4 > & color() const
Definition ClearOp.h:35
static DEFINE_OP_CLASS_ID GrOp::Owner MakeColor(GrRecordingContext *context, const GrScissorState &scissor, std::array< float, 4 > color)
Definition ClearOp.cpp:27
static bool b
struct MyStruct a[10]
AtkStateType state
static const uint8_t buffer[]
static SkRect Make(const SkISize &size)
Definition SkRect.h:669