20 return !
a.enabled() || (
b.enabled() &&
a.rect().contains(
b.rect()));
29 std::array<float, 4>
color) {
30 return GrOp::Make<ClearOp>(context, Buffer::kColor, scissor,
color,
false);
36 return GrOp::Make<ClearOp>(context,
39 std::array<float, 4>(),
43ClearOp::ClearOp(Buffer
buffer,
45 std::array<float, 4>
color,
50 , fStencilInsideMask(insideMask)
58 if (other->fBuffer == fBuffer) {
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)) {
71 }
else if (other->fScissor == fScissor) {
74 if (other->fBuffer & Buffer::kColor) {
75 fColor = other->fColor;
77 if (other->fBuffer & Buffer::kStencilClip) {
78 fStencilInsideMask = other->fStencilInsideMask;
80 fBuffer = Buffer::kBoth;
88 if (fBuffer & Buffer::kColor) {
89 state->opsRenderPass()->clear(fScissor, fColor);
92 if (fBuffer & Buffer::kStencilClip) {
93 state->opsRenderPass()->clearStencilClip(fScissor, fStencilInsideMask);
std::unique_ptr< GrOp > Owner
void setBounds(const SkRect &newBounds, HasAABloat aabloat, IsHairline zeroArea)
const SkIRect & rect() const
static GrOp::Owner MakeStencilClip(GrRecordingContext *context, const GrScissorState &scissor, bool insideMask)
const std::array< float, 4 > & color() const
static DEFINE_OP_CLASS_ID GrOp::Owner MakeColor(GrRecordingContext *context, const GrScissorState &scissor, std::array< float, 4 > color)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
static SkRect Make(const SkISize &size)