2279325d53
BUG=skia:3555 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1541903002 Committed: https://skia.googlesource.com/skia/+/7df3f5e127f8016d17b637cc48a6a4718f1a6822 Review URL: https://codereview.chromium.org/1541903002
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef GrCoverageSetOpXP_DEFINED
|
|
#define GrCoverageSetOpXP_DEFINED
|
|
|
|
#include "GrTypes.h"
|
|
#include "GrXferProcessor.h"
|
|
#include "SkRegion.h"
|
|
|
|
class GrProcOptInfo;
|
|
|
|
/**
|
|
* This xfer processor directly blends the the src coverage with the dst using a set operator. It is
|
|
* useful for rendering coverage masks using CSG. It can optionally invert the src coverage before
|
|
* applying the set operator.
|
|
*/
|
|
class GrCoverageSetOpXPFactory : public GrXPFactory {
|
|
public:
|
|
static GrXPFactory* Create(SkRegion::Op regionOp, bool invertCoverage = false);
|
|
|
|
void getInvariantBlendedColor(const GrProcOptInfo& colorPOI,
|
|
GrXPFactory::InvariantBlendedColor*) const override;
|
|
|
|
private:
|
|
GrCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCoverage);
|
|
|
|
GrXferProcessor* onCreateXferProcessor(const GrCaps& caps,
|
|
const GrPipelineOptimizations& optimizations,
|
|
bool hasMixedSamples,
|
|
const DstTexture*) const override;
|
|
|
|
bool onWillReadDstColor(const GrCaps& /*caps*/,
|
|
const GrPipelineOptimizations& /*optimizations*/,
|
|
bool /*hasMixedSamples*/) const override {
|
|
return false;
|
|
}
|
|
|
|
bool onIsEqual(const GrXPFactory& xpfBase) const override {
|
|
const GrCoverageSetOpXPFactory& xpf = xpfBase.cast<GrCoverageSetOpXPFactory>();
|
|
return fRegionOp == xpf.fRegionOp;
|
|
}
|
|
|
|
GR_DECLARE_XP_FACTORY_TEST;
|
|
|
|
SkRegion::Op fRegionOp;
|
|
bool fInvertCoverage;
|
|
|
|
typedef GrXPFactory INHERITED;
|
|
};
|
|
#endif
|
|
|