2014-01-30 18:15:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This test only works with the GPU backend.
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkBlendMode.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkMatrix.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
|
|
|
#include "include/private/GrSharedEnums.h"
|
|
|
|
#include "include/private/GrTypesPriv.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/core/SkTLList.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "src/gpu/GrFragmentProcessor.h"
|
|
|
|
#include "src/gpu/GrPaint.h"
|
|
|
|
#include "src/gpu/GrRenderTargetContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrRenderTargetContextPriv.h"
|
|
|
|
#include "src/gpu/effects/GrConvexPolyEffect.h"
|
2019-11-22 21:56:36 +00:00
|
|
|
#include "tools/gpu/TestOps.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
class GrAppliedClip;
|
2014-01-30 18:15:51 +00:00
|
|
|
|
2016-04-01 13:06:20 +00:00
|
|
|
namespace skiagm {
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
/**
|
2014-09-23 16:50:21 +00:00
|
|
|
* This GM directly exercises a GrProcessor that draws convex polygons.
|
2014-01-30 18:15:51 +00:00
|
|
|
*/
|
2019-02-07 22:23:36 +00:00
|
|
|
class ConvexPolyEffect : public GpuGM {
|
2014-01-30 18:15:51 +00:00
|
|
|
public:
|
|
|
|
ConvexPolyEffect() {
|
|
|
|
this->setBGColor(0xFFFFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2014-01-30 18:15:51 +00:00
|
|
|
return SkString("convex_poly_effect");
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override {
|
2014-06-10 06:59:03 +00:00
|
|
|
return SkISize::Make(720, 800);
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onOnceBeforeDraw() override {
|
2014-01-30 18:15:51 +00:00
|
|
|
SkPath tri;
|
|
|
|
tri.moveTo(5.f, 5.f);
|
|
|
|
tri.lineTo(100.f, 20.f);
|
|
|
|
tri.lineTo(15.f, 100.f);
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
fPaths.addToTail(tri);
|
|
|
|
fPaths.addToTail(SkPath())->reverseAddPath(tri);
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
tri.close();
|
|
|
|
fPaths.addToTail(tri);
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
SkPath ngon;
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr SkScalar kRadius = 50.f;
|
2014-01-30 18:15:51 +00:00
|
|
|
const SkPoint center = { kRadius, kRadius };
|
|
|
|
for (int i = 0; i < GrConvexPolyEffect::kMaxEdges; ++i) {
|
|
|
|
SkScalar angle = 2 * SK_ScalarPI * i / GrConvexPolyEffect::kMaxEdges;
|
2019-04-02 14:59:28 +00:00
|
|
|
SkPoint point = { SkScalarCos(angle), SkScalarSin(angle) };
|
2014-01-30 18:15:51 +00:00
|
|
|
point.scale(kRadius);
|
|
|
|
point = center + point;
|
|
|
|
if (0 == i) {
|
|
|
|
ngon.moveTo(point);
|
|
|
|
} else {
|
|
|
|
ngon.lineTo(point);
|
|
|
|
}
|
|
|
|
}
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
fPaths.addToTail(ngon);
|
|
|
|
SkMatrix scaleM;
|
|
|
|
scaleM.setScale(1.1f, 0.4f);
|
|
|
|
ngon.transform(scaleM);
|
|
|
|
fPaths.addToTail(ngon);
|
2014-02-09 03:02:01 +00:00
|
|
|
|
2016-03-28 22:04:45 +00:00
|
|
|
SkPath linePath;
|
|
|
|
linePath.moveTo(5.f, 5.f);
|
|
|
|
linePath.lineTo(6.f, 6.f);
|
|
|
|
fPaths.addToTail(linePath);
|
|
|
|
|
2014-02-08 19:31:05 +00:00
|
|
|
// integer edges
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.f, 1.f, 30.f, 25.f));
|
|
|
|
// half-integer edges
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.5f, 0.5f, 29.5f, 24.5f));
|
|
|
|
// vertically/horizontally thin rects that cover pixel centers
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.25f, 0.5f, 5.75f, 24.5f));
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.5f, 0.5f, 29.5f, 0.75f));
|
|
|
|
// vertically/horizontally thin rects that don't cover pixel centers
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.55f, 0.5f, 5.75f, 24.5f));
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.5f, .05f, 29.5f, .25f));
|
|
|
|
// small in x and y
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(5.05f, .55f, 5.45f, .85f));
|
|
|
|
// inverted in x and y
|
|
|
|
fRects.addToTail(SkRect::MakeLTRB(100.f, 50.5f, 5.f, 0.5f));
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|
|
|
|
|
2020-06-29 19:36:12 +00:00
|
|
|
void onDraw(GrRecordingContext* context, GrRenderTargetContext* renderTargetContext,
|
2019-02-07 22:23:36 +00:00
|
|
|
SkCanvas* canvas) override {
|
2014-01-30 18:15:51 +00:00
|
|
|
SkScalar y = 0;
|
2019-11-22 21:56:36 +00:00
|
|
|
static constexpr SkScalar kDX = 12.f;
|
|
|
|
static constexpr SkScalar kOutset = 5.f;
|
|
|
|
|
2015-11-19 03:01:12 +00:00
|
|
|
for (PathList::Iter iter(fPaths, PathList::Iter::kHead_IterStart);
|
2014-09-05 20:34:00 +00:00
|
|
|
iter.get();
|
2014-01-30 18:15:51 +00:00
|
|
|
iter.next()) {
|
2014-02-08 19:31:05 +00:00
|
|
|
const SkPath* path = iter.get();
|
2014-01-30 18:15:51 +00:00
|
|
|
SkScalar x = 0;
|
|
|
|
|
2017-11-10 16:58:19 +00:00
|
|
|
for (int et = 0; et < kGrClipEdgeTypeCnt; ++et) {
|
2020-05-21 16:11:27 +00:00
|
|
|
const SkMatrix m = SkMatrix::Translate(x, y);
|
2014-01-30 18:15:51 +00:00
|
|
|
SkPath p;
|
|
|
|
path->transform(m, &p);
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2017-11-09 19:51:17 +00:00
|
|
|
GrClipEdgeType edgeType = (GrClipEdgeType) et;
|
2020-06-16 20:34:12 +00:00
|
|
|
auto [success, fp] = GrConvexPolyEffect::Make(/*inputFP=*/nullptr, edgeType, p);
|
|
|
|
if (!success) {
|
2014-03-05 18:27:43 +00:00
|
|
|
continue;
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2016-06-23 21:07:00 +00:00
|
|
|
GrPaint grPaint;
|
2018-10-16 19:19:28 +00:00
|
|
|
grPaint.setColor4f({ 0, 0, 0, 1.f });
|
2017-01-09 16:46:10 +00:00
|
|
|
grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
|
2020-07-21 18:39:40 +00:00
|
|
|
grPaint.setCoverageFragmentProcessor(std::move(fp));
|
2014-11-17 22:22:48 +00:00
|
|
|
|
2019-11-22 21:56:36 +00:00
|
|
|
auto rect = p.getBounds().makeOutset(kOutset, kOutset);
|
|
|
|
auto op = sk_gpu_test::test_ops::MakeRect(context, std::move(grPaint), rect);
|
2017-07-14 15:30:17 +00:00
|
|
|
renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2016-03-28 22:04:45 +00:00
|
|
|
x += SkScalarCeilToScalar(path->getBounds().width() + kDX);
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
// Draw AA and non AA paths using normal API for reference.
|
|
|
|
canvas->save();
|
|
|
|
canvas->translate(x, y);
|
|
|
|
SkPaint paint;
|
|
|
|
canvas->drawPath(*path, paint);
|
|
|
|
canvas->translate(path->getBounds().width() + 10.f, 0);
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
canvas->drawPath(*path, paint);
|
|
|
|
canvas->restore();
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-02-08 19:31:05 +00:00
|
|
|
y += SkScalarCeilToScalar(path->getBounds().height() + 20.f);
|
|
|
|
}
|
|
|
|
|
2015-11-19 03:01:12 +00:00
|
|
|
for (RectList::Iter iter(fRects, RectList::Iter::kHead_IterStart);
|
2014-09-05 20:34:00 +00:00
|
|
|
iter.get();
|
2014-02-08 19:31:05 +00:00
|
|
|
iter.next()) {
|
|
|
|
|
|
|
|
SkScalar x = 0;
|
|
|
|
|
2017-11-10 16:58:19 +00:00
|
|
|
for (int et = 0; et < kGrClipEdgeTypeCnt; ++et) {
|
2019-11-22 21:56:36 +00:00
|
|
|
SkRect rect = iter.get()->makeOffset(x, y);
|
2017-11-09 19:51:17 +00:00
|
|
|
GrClipEdgeType edgeType = (GrClipEdgeType) et;
|
2020-06-16 20:34:12 +00:00
|
|
|
auto [success, fp] = GrConvexPolyEffect::Make(/*inputFP=*/nullptr, edgeType, rect);
|
|
|
|
if (!success) {
|
2014-03-05 18:27:43 +00:00
|
|
|
continue;
|
2014-02-28 14:43:26 +00:00
|
|
|
}
|
2014-02-08 19:31:05 +00:00
|
|
|
|
2016-06-23 21:07:00 +00:00
|
|
|
GrPaint grPaint;
|
2018-10-16 19:19:28 +00:00
|
|
|
grPaint.setColor4f({ 0, 0, 0, 1.f });
|
2017-01-09 16:46:10 +00:00
|
|
|
grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
|
2020-07-21 18:39:40 +00:00
|
|
|
grPaint.setCoverageFragmentProcessor(std::move(fp));
|
2014-02-08 19:31:05 +00:00
|
|
|
|
2019-11-22 21:56:36 +00:00
|
|
|
auto drawRect = rect.makeOutset(kOutset, kOutset);
|
|
|
|
auto op = sk_gpu_test::test_ops::MakeRect(context, std::move(grPaint), drawRect);
|
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
renderTargetContext->priv().testingOnly_addDrawOp(std::move(op));
|
2014-02-08 19:31:05 +00:00
|
|
|
|
2016-03-28 22:04:45 +00:00
|
|
|
x += SkScalarCeilToScalar(rect.width() + kDX);
|
2014-02-28 14:43:26 +00:00
|
|
|
}
|
2014-02-08 19:31:05 +00:00
|
|
|
|
2014-02-28 14:43:26 +00:00
|
|
|
// Draw rect without and with AA using normal API for reference
|
2014-02-08 19:31:05 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->translate(x, y);
|
|
|
|
SkPaint paint;
|
2014-02-28 14:43:26 +00:00
|
|
|
canvas->drawRect(*iter.get(), paint);
|
2016-03-28 22:04:45 +00:00
|
|
|
x += SkScalarCeilToScalar(iter.get()->width() + kDX);
|
2014-02-08 19:31:05 +00:00
|
|
|
paint.setAntiAlias(true);
|
|
|
|
canvas->drawRect(*iter.get(), paint);
|
|
|
|
canvas->restore();
|
|
|
|
|
2014-02-28 14:43:26 +00:00
|
|
|
y += SkScalarCeilToScalar(iter.get()->height() + 20.f);
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-11-19 03:01:12 +00:00
|
|
|
typedef SkTLList<SkPath, 1> PathList;
|
|
|
|
typedef SkTLList<SkRect, 1> RectList;
|
|
|
|
PathList fPaths;
|
|
|
|
RectList fRects;
|
2014-02-09 03:02:01 +00:00
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
2015-08-26 20:07:48 +00:00
|
|
|
DEF_GM(return new ConvexPolyEffect;)
|
2014-01-30 18:15:51 +00:00
|
|
|
}
|