skia2/tests/AdvancedBlendTest.cpp
Chris Dalton b8fff0dfce Make mixed samples detection automatic
Previously, we relied on ops to deduce whether a draw would have
hardware coverage modulation as a result mixed samples. This is
problematic because *any* draw can have mixed samples coverage if
there is a multisampled stencil clip. No ops were checking for stencil
clip, and most just said they never used mixed samples.

Now that the only usecase for mixed samples is the stencil buffer,
this CL makes the processorSet automatically deduce mixed samples
coverage from the stencil settings and fsaaType.

Bug: skia:
Change-Id: Ib69b84bc03b12f6efb8e7d6ed721ae1612785315
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/197281
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
2019-03-05 21:27:15 +00:00

61 lines
2.6 KiB
C++

/*
* Copyright 2019 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "Test.h"
#include "GrContextPriv.h"
#include "GrPaint.h"
#include "GrProcessorSet.h"
#include "effects/GrCustomXfermode.h"
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(AdvancedBlendTest, reporter, ctxInfo) {
static constexpr auto opaque = GrProcessorAnalysisColor::Opaque::kYes;
static constexpr auto coverage = GrProcessorAnalysisCoverage::kSingleChannel;
const GrCaps& caps = *ctxInfo.grContext()->priv().caps();
for (int mode = (int)SkBlendMode::kLastMode; mode > (int)SkBlendMode::kLastCoeffMode; --mode) {
const SkBlendMode blendMode = (SkBlendMode)mode;
const GrBlendEquation blendEquation =
(GrBlendEquation)(mode + (kOverlay_GrBlendEquation - (int)SkBlendMode::kOverlay));
const GrXPFactory* xpf = GrCustomXfermode::Get(blendMode);
GrXPFactory::AnalysisProperties xpfAnalysis =
GrXPFactory::GetAnalysisProperties(xpf, opaque, coverage, caps);
GrPaint paint;
paint.setXPFactory(xpf);
GrProcessorSet procs(std::move(paint));
SkPMColor4f overrideColor;
GrProcessorSet::Analysis processorAnalysis =
procs.finalize(
opaque, coverage, nullptr, &GrUserStencilSettings::kUnused,
GrFSAAType::kNone, caps, &overrideColor);
if (caps.advancedBlendEquationSupport() &&
!caps.isAdvancedBlendEquationBlacklisted(blendEquation)) {
REPORTER_ASSERT(reporter,
!(xpfAnalysis & GrXPFactory::AnalysisProperties::kReadsDstInShader));
if (GrCaps::kAdvancedCoherent_BlendEquationSupport == caps.blendEquationSupport()) {
REPORTER_ASSERT(reporter, !processorAnalysis.requiresNonOverlappingDraws());
} else {
REPORTER_ASSERT(reporter,
GrCaps::kAdvanced_BlendEquationSupport
== caps.blendEquationSupport());
REPORTER_ASSERT(reporter, processorAnalysis.requiresNonOverlappingDraws());
}
} else {
REPORTER_ASSERT(reporter,
(xpfAnalysis & GrXPFactory::AnalysisProperties::kReadsDstInShader));
if (xpfAnalysis & GrXPFactory::AnalysisProperties::kRequiresDstTexture) {
REPORTER_ASSERT(reporter, processorAnalysis.requiresNonOverlappingDraws());
} else {
REPORTER_ASSERT(reporter, !processorAnalysis.requiresNonOverlappingDraws());
}
}
}
}