a8f80de2bc
All GrXPFactory instances are static constexpr. Change-Id: If1086b08534166201e53b3fd9379104e361eb5e6 Reviewed-on: https://skia-review.googlesource.com/6701 Reviewed-by: Greg Daniel <egdaniel@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
59 lines
1.7 KiB
C++
59 lines
1.7 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;
|
|
|
|
// See the comment above GrXPFactory's definition about this warning suppression.
|
|
#if defined(__GNUC__) || defined(__clang)
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
|
|
#endif
|
|
|
|
/**
|
|
* 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 const GrXPFactory* Get(SkRegion::Op regionOp, bool invertCoverage = false);
|
|
|
|
void getInvariantBlendedColor(const GrProcOptInfo& colorPOI,
|
|
GrXPFactory::InvariantBlendedColor*) const override;
|
|
|
|
private:
|
|
constexpr GrCoverageSetOpXPFactory(SkRegion::Op regionOp, bool invertCoverage);
|
|
|
|
GrXferProcessor* onCreateXferProcessor(const GrCaps&,
|
|
const GrPipelineAnalysis&,
|
|
bool hasMixedSamples,
|
|
const DstTexture*) const override;
|
|
|
|
bool onWillReadDstColor(const GrCaps&, const GrPipelineAnalysis&) const override {
|
|
return false;
|
|
}
|
|
|
|
GR_DECLARE_XP_FACTORY_TEST;
|
|
|
|
SkRegion::Op fRegionOp;
|
|
bool fInvertCoverage;
|
|
|
|
typedef GrXPFactory INHERITED;
|
|
};
|
|
#if defined(__GNUC__) || defined(__clang)
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
#endif
|
|
|