Remove spurious semicolons (should fix Chrome roll)
Change-Id: Ib45c569e3bbfeb41003ca9c261408840fb0af9dc Reviewed-on: https://skia-review.googlesource.com/c/skia/+/419897 Auto-Submit: Brian Osman <brianosman@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Chris Dalton <csmartdalton@google.com>
This commit is contained in:
parent
fe83ab6706
commit
2421b9901b
@ -97,6 +97,6 @@ private:
|
||||
using INHERITED = GrSurface;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrAttachment::UsageFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrAttachment::UsageFlags)
|
||||
|
||||
#endif
|
||||
|
@ -632,6 +632,6 @@ private:
|
||||
using INHERITED = SkRefCnt;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrCaps::ProgramDescOverrideFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrCaps::ProgramDescOverrideFlags)
|
||||
|
||||
#endif
|
||||
|
@ -238,8 +238,8 @@ private:
|
||||
GrSwizzle fWriteSwizzle;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrPipeline::InputFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrPipeline::Flags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrPipeline::InputFlags)
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrPipeline::Flags)
|
||||
|
||||
inline bool operator&(GrPipeline::Flags flags, GrPipeline::InputFlags inputFlag) {
|
||||
return (flags & (GrPipeline::Flags)inputFlag);
|
||||
|
@ -141,7 +141,7 @@ private:
|
||||
|
||||
static_assert(4 == sizeof(BlendFormula));
|
||||
|
||||
GR_MAKE_BITFIELD_OPS(BlendFormula::Properties);
|
||||
GR_MAKE_BITFIELD_OPS(BlendFormula::Properties)
|
||||
|
||||
constexpr BlendFormula::Properties BlendFormula::GetProperties(OutputType PrimaryOut,
|
||||
OutputType SecondaryOut,
|
||||
|
@ -64,7 +64,7 @@ private:
|
||||
char fPadding[4] = {};
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrGLSLFPFragmentBuilder::ScopeFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrGLSLFPFragmentBuilder::ScopeFlags)
|
||||
|
||||
/*
|
||||
* This class is used by Xfer processors to build their fragment code.
|
||||
|
@ -84,6 +84,6 @@ private:
|
||||
using INHERITED = GrOp;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrDrawOp::FixedFunctionFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrDrawOp::FixedFunctionFlags)
|
||||
|
||||
#endif
|
||||
|
@ -90,7 +90,7 @@ private:
|
||||
SkTHashMap<AtlasPathKey, SkIPoint16> fAtlasPathCache;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrTessellationPathRenderer::PathFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrTessellationPathRenderer::PathFlags)
|
||||
|
||||
#else // GR_OGA
|
||||
|
||||
@ -107,7 +107,7 @@ public:
|
||||
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrTessellationPathRenderer::PathFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrTessellationPathRenderer::PathFlags)
|
||||
|
||||
#endif // GR_OGA
|
||||
|
||||
|
@ -47,6 +47,6 @@ private:
|
||||
const SkIRect fBounds;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrModulateAtlasCoverageFP::Flags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrModulateAtlasCoverageFP::Flags)
|
||||
|
||||
#endif
|
||||
|
@ -213,7 +213,7 @@ private:
|
||||
class InstancedImpl;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrStrokeTessellationShader::ShaderFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrStrokeTessellationShader::ShaderFlags)
|
||||
|
||||
// This common base class emits shader code for our parametric/radial stroke tessellation algorithm
|
||||
// described above. The subclass emits its own specific setup code before calling into
|
||||
|
@ -198,7 +198,7 @@ private:
|
||||
using INHERITED = GrVkManagedResource;
|
||||
};
|
||||
|
||||
GR_MAKE_BITFIELD_OPS(GrVkRenderPass::AttachmentFlags);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrVkRenderPass::SelfDependencyFlags);
|
||||
GR_MAKE_BITFIELD_OPS(GrVkRenderPass::AttachmentFlags)
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(GrVkRenderPass::SelfDependencyFlags)
|
||||
|
||||
#endif
|
||||
|
@ -204,6 +204,6 @@ private:
|
||||
|
||||
} // namespace sk_gpu_test
|
||||
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(sk_gpu_test::GrContextFactory::ContextOverrides);
|
||||
GR_MAKE_BITFIELD_CLASS_OPS(sk_gpu_test::GrContextFactory::ContextOverrides)
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user