2017-10-30 18:02:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkBitmap.h"
|
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkColorSpace.h"
|
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkMatrix.h"
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkStrokeRec.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
|
|
|
#include "include/gpu/GrBackendSurface.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/GrContext.h"
|
|
|
|
#include "include/gpu/GrContextOptions.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "include/gpu/GrTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/private/GrTypesPriv.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "include/private/SkColorData.h"
|
|
|
|
#include "src/gpu/GrCaps.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrClip.h"
|
|
|
|
#include "src/gpu/GrContextPriv.h"
|
|
|
|
#include "src/gpu/GrFragmentProcessor.h"
|
|
|
|
#include "src/gpu/GrPaint.h"
|
|
|
|
#include "src/gpu/GrRenderTargetContext.h"
|
|
|
|
#include "src/gpu/GrStyle.h"
|
|
|
|
#include "src/gpu/effects/generated/GrConstColorProcessor.h"
|
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "tools/gpu/GrContextFactory.h"
|
2018-04-17 21:42:08 +00:00
|
|
|
|
2018-05-22 14:48:08 +00:00
|
|
|
#include <utility>
|
|
|
|
|
2017-10-30 18:02:48 +00:00
|
|
|
static void only_allow_default(GrContextOptions* options) {
|
|
|
|
options->fGpuPathRenderers = GpuPathRenderers::kNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SkBitmap read_back(GrRenderTargetContext* rtc, int width, int height) {
|
|
|
|
|
|
|
|
SkImageInfo dstII = SkImageInfo::MakeN32Premul(width, height);
|
|
|
|
|
|
|
|
SkBitmap bm;
|
|
|
|
bm.allocPixels(dstII);
|
|
|
|
|
2019-07-01 17:05:28 +00:00
|
|
|
rtc->readPixels(dstII, bm.getAddr(0, 0), bm.rowBytes(), {0, 0});
|
2017-10-30 18:02:48 +00:00
|
|
|
|
|
|
|
return bm;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SkPath make_path(const SkRect& outer, int inset, SkPath::FillType fill) {
|
|
|
|
SkPath p;
|
|
|
|
|
|
|
|
p.addRect(outer, SkPath::kCW_Direction);
|
|
|
|
p.addRect(outer.makeInset(inset, inset), SkPath::kCCW_Direction);
|
|
|
|
p.setFillType(fill);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const int kBigSize = 64; // This should be a power of 2
|
|
|
|
static const int kPad = 3;
|
|
|
|
|
|
|
|
// From crbug.com/769898:
|
|
|
|
// create an approx fit render target context that will have extra space (i.e., npot)
|
|
|
|
// draw an inverse wound concave path into it - forcing use of the stencil-using path renderer
|
|
|
|
// throw the RTC away so the backing GrSurface/GrStencilBuffer can be reused
|
|
|
|
// create a new render target context that will reuse the prior GrSurface
|
|
|
|
// draw a normally wound concave path that touches outside of the approx fit RTC's content rect
|
|
|
|
//
|
|
|
|
// When the bug manifests the GrDefaultPathRenderer/GrMSAAPathRenderer is/was leaving the stencil
|
|
|
|
// buffer outside of the first content rect in a bad state and the second draw would be incorrect.
|
|
|
|
|
|
|
|
static void run_test(GrContext* ctx, skiatest::Reporter* reporter) {
|
|
|
|
SkPath invPath = make_path(SkRect::MakeXYWH(0, 0, kBigSize, kBigSize),
|
|
|
|
kBigSize/2-1, SkPath::kInverseWinding_FillType);
|
|
|
|
SkPath path = make_path(SkRect::MakeXYWH(0, 0, kBigSize, kBigSize),
|
|
|
|
kPad, SkPath::kWinding_FillType);
|
|
|
|
|
|
|
|
GrStyle style(SkStrokeRec::kFill_InitStyle);
|
|
|
|
|
2018-11-16 20:43:41 +00:00
|
|
|
GrBackendFormat format =
|
2019-02-04 18:26:26 +00:00
|
|
|
ctx->priv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
|
2017-10-30 18:02:48 +00:00
|
|
|
{
|
2019-06-24 19:50:07 +00:00
|
|
|
auto rtc = ctx->priv().makeDeferredRenderTargetContext(
|
|
|
|
format, SkBackingFit::kApprox, kBigSize/2 + 1, kBigSize/2 + 1,
|
|
|
|
kRGBA_8888_GrPixelConfig, GrColorType::kRGBA_8888, nullptr);
|
2017-10-30 18:02:48 +00:00
|
|
|
|
2018-11-05 20:06:26 +00:00
|
|
|
rtc->clear(nullptr, { 0, 0, 0, 1 }, GrRenderTargetContext::CanClearFullscreen::kYes);
|
2017-10-30 18:02:48 +00:00
|
|
|
|
|
|
|
GrPaint paint;
|
|
|
|
|
2018-10-03 20:35:54 +00:00
|
|
|
const SkPMColor4f color = { 1.0f, 0.0f, 0.0f, 1.0f };
|
2017-11-20 17:12:24 +00:00
|
|
|
auto fp = GrConstColorProcessor::Make(color, GrConstColorProcessor::InputMode::kIgnore);
|
2017-10-30 18:02:48 +00:00
|
|
|
paint.addColorFragmentProcessor(std::move(fp));
|
|
|
|
|
|
|
|
rtc->drawPath(GrNoClip(), std::move(paint), GrAA::kNo,
|
|
|
|
SkMatrix::I(), invPath, style);
|
|
|
|
|
2019-04-17 19:26:11 +00:00
|
|
|
rtc->flush(SkSurface::BackendSurfaceAccess::kNoAccess, GrFlushInfo());
|
2017-10-30 18:02:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-02-04 18:26:26 +00:00
|
|
|
auto rtc = ctx->priv().makeDeferredRenderTargetContext(
|
2019-06-24 19:50:07 +00:00
|
|
|
format, SkBackingFit::kExact, kBigSize, kBigSize, kRGBA_8888_GrPixelConfig,
|
|
|
|
GrColorType::kRGBA_8888, nullptr);
|
2017-10-30 18:02:48 +00:00
|
|
|
|
2018-11-05 20:06:26 +00:00
|
|
|
rtc->clear(nullptr, { 0, 0, 0, 1 }, GrRenderTargetContext::CanClearFullscreen::kYes);
|
2017-10-30 18:02:48 +00:00
|
|
|
|
|
|
|
GrPaint paint;
|
|
|
|
|
2018-10-03 20:35:54 +00:00
|
|
|
const SkPMColor4f color = { 0.0f, 1.0f, 0.0f, 1.0f };
|
2017-11-20 17:12:24 +00:00
|
|
|
auto fp = GrConstColorProcessor::Make(color, GrConstColorProcessor::InputMode::kIgnore);
|
2017-10-30 18:02:48 +00:00
|
|
|
paint.addColorFragmentProcessor(std::move(fp));
|
|
|
|
|
|
|
|
rtc->drawPath(GrNoClip(), std::move(paint), GrAA::kNo,
|
|
|
|
SkMatrix::I(), path, style);
|
|
|
|
|
|
|
|
SkBitmap bm = read_back(rtc.get(), kBigSize, kBigSize);
|
|
|
|
|
|
|
|
bool correct = true;
|
|
|
|
for (int y = kBigSize/2+1; y < kBigSize-kPad-1 && correct; ++y) {
|
|
|
|
for (int x = kPad+1; x < kBigSize-kPad-1 && correct; ++x) {
|
|
|
|
correct = bm.getColor(x, y) == SK_ColorBLACK;
|
|
|
|
REPORTER_ASSERT(reporter, correct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_CONTEXTS(GrDefaultPathRendererTest,
|
|
|
|
sk_gpu_test::GrContextFactory::IsRenderingContext,
|
|
|
|
reporter, ctxInfo, only_allow_default) {
|
|
|
|
GrContext* ctx = ctxInfo.grContext();
|
|
|
|
|
|
|
|
run_test(ctx, reporter);
|
|
|
|
}
|