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.
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
|
|
|
|
#include "GrContext.h"
|
2014-11-15 00:00:38 +00:00
|
|
|
#include "GrDefaultGeoProcFactory.h"
|
2017-07-14 15:30:17 +00:00
|
|
|
#include "GrOpFlushState.h"
|
2014-01-30 18:15:51 +00:00
|
|
|
#include "GrPathUtils.h"
|
2017-07-14 15:30:17 +00:00
|
|
|
#include "GrRenderTargetContextPriv.h"
|
2014-01-30 18:15:51 +00:00
|
|
|
#include "GrTest.h"
|
|
|
|
#include "SkColorPriv.h"
|
|
|
|
#include "SkGeometry.h"
|
|
|
|
#include "SkTLList.h"
|
|
|
|
#include "effects/GrConvexPolyEffect.h"
|
2017-07-14 15:30:17 +00:00
|
|
|
#include "ops/GrMeshDrawOp.h"
|
2014-01-30 18:15:51 +00:00
|
|
|
|
2016-04-01 13:06:20 +00:00
|
|
|
/** outset rendered rect to visualize anti-aliased poly edges */
|
|
|
|
static SkRect outset(const SkRect& unsorted) {
|
|
|
|
SkRect r = unsorted;
|
|
|
|
r.outset(5.f, 5.f);
|
|
|
|
return r;
|
|
|
|
}
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2016-04-01 13:06:20 +00:00
|
|
|
/** sorts a rect */
|
|
|
|
static SkRect sorted_rect(const SkRect& unsorted) {
|
|
|
|
SkRect r = unsorted;
|
|
|
|
r.sort();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace skiagm {
|
2017-07-14 15:30:17 +00:00
|
|
|
class PolyBoundsOp : public GrMeshDrawOp {
|
2015-02-11 21:45:50 +00:00
|
|
|
public:
|
2016-12-01 14:36:50 +00:00
|
|
|
DEFINE_OP_CLASS_ID
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2016-12-16 14:35:49 +00:00
|
|
|
const char* name() const override { return "PolyBoundsOp"; }
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
static std::unique_ptr<GrDrawOp> Make(GrPaint&& paint, const SkRect& rect) {
|
|
|
|
return std::unique_ptr<GrDrawOp>(new PolyBoundsOp(std::move(paint), rect));
|
|
|
|
}
|
|
|
|
|
|
|
|
FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
|
|
|
|
|
|
|
|
RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip) override {
|
|
|
|
auto analysis = fProcessors.finalize(
|
|
|
|
fColor, GrProcessorAnalysisCoverage::kNone, clip, false, caps, &fColor);
|
|
|
|
return analysis.requiresDstTexture() ? RequiresDstTexture::kYes : RequiresDstTexture::kNo;
|
2015-02-11 21:45:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-07-14 15:30:17 +00:00
|
|
|
PolyBoundsOp(GrPaint&& paint, const SkRect& rect)
|
|
|
|
: INHERITED(ClassID())
|
|
|
|
, fColor(paint.getColor())
|
|
|
|
, fProcessors(std::move(paint))
|
|
|
|
, fRect(outset(rect)) {
|
|
|
|
this->setBounds(sorted_rect(fRect), HasAABloat::kNo, IsZeroArea::kNo);
|
|
|
|
}
|
2016-12-16 14:35:49 +00:00
|
|
|
|
2017-08-09 20:02:19 +00:00
|
|
|
void onPrepareDraws(Target* target) override {
|
2016-04-01 13:06:20 +00:00
|
|
|
using namespace GrDefaultGeoProcFactory;
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
Color color(fColor);
|
2017-01-04 15:44:42 +00:00
|
|
|
sk_sp<GrGeometryProcessor> gp(GrDefaultGeoProcFactory::Make(
|
|
|
|
color, Coverage::kSolid_Type, LocalCoords::kUnused_Type, SkMatrix::I()));
|
2015-05-13 21:18:07 +00:00
|
|
|
|
2016-04-01 13:06:20 +00:00
|
|
|
size_t vertexStride = gp->getVertexStride();
|
2015-05-05 14:49:49 +00:00
|
|
|
SkASSERT(vertexStride == sizeof(SkPoint));
|
|
|
|
QuadHelper helper;
|
2015-08-17 19:55:38 +00:00
|
|
|
SkPoint* verts = reinterpret_cast<SkPoint*>(helper.init(target, vertexStride, 1));
|
2015-05-05 14:49:49 +00:00
|
|
|
if (!verts) {
|
2015-03-05 22:33:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-01 13:06:20 +00:00
|
|
|
fRect.toQuad(verts);
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2017-08-09 20:27:09 +00:00
|
|
|
helper.recordDraw(
|
|
|
|
target, gp.get(),
|
|
|
|
target->makePipeline(0, std::move(fProcessors), target->detachAppliedClip()));
|
2015-02-11 21:45:50 +00:00
|
|
|
}
|
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
bool onCombineIfPossible(GrOp* op, const GrCaps& caps) override { return false; }
|
|
|
|
|
|
|
|
GrColor fColor;
|
|
|
|
GrProcessorSet fProcessors;
|
2016-04-01 13:06:20 +00:00
|
|
|
SkRect fRect;
|
2015-02-11 21:45:50 +00:00
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
typedef GrMeshDrawOp INHERITED;
|
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
|
|
|
*/
|
|
|
|
class ConvexPolyEffect : public GM {
|
|
|
|
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;
|
|
|
|
SkPoint point;
|
|
|
|
point.fY = SkScalarSinCos(angle, &point.fX);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2016-10-27 18:47:55 +00:00
|
|
|
GrRenderTargetContext* renderTargetContext =
|
|
|
|
canvas->internal_private_accessTopLayerRenderTargetContext();
|
|
|
|
if (!renderTargetContext) {
|
2016-04-28 21:32:04 +00:00
|
|
|
skiagm::GM::DrawGpuOnlyMessage(canvas);
|
2016-01-13 15:47:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-30 18:15:51 +00:00
|
|
|
SkScalar y = 0;
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr SkScalar kDX = 12.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;
|
|
|
|
|
2014-09-23 16:50:21 +00:00
|
|
|
for (int et = 0; et < kGrProcessorEdgeTypeCnt; ++et) {
|
2015-03-27 02:57:08 +00:00
|
|
|
const SkMatrix m = SkMatrix::MakeTrans(x, y);
|
2014-01-30 18:15:51 +00:00
|
|
|
SkPath p;
|
|
|
|
path->transform(m, &p);
|
2014-01-31 03:01:59 +00:00
|
|
|
|
2014-09-23 16:50:21 +00:00
|
|
|
GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
|
2017-08-11 13:40:37 +00:00
|
|
|
std::unique_ptr<GrFragmentProcessor> fp(GrConvexPolyEffect::Make(edgeType, p));
|
2014-09-23 16:50:21 +00:00
|
|
|
if (!fp) {
|
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;
|
2017-07-14 15:30:17 +00:00
|
|
|
grPaint.setColor4f(GrColor4f(0, 0, 0, 1.f));
|
2017-01-09 16:46:10 +00:00
|
|
|
grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
|
2016-06-23 21:07:00 +00:00
|
|
|
grPaint.addCoverageFragmentProcessor(std::move(fp));
|
2014-11-17 22:22:48 +00:00
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
std::unique_ptr<GrDrawOp> op =
|
|
|
|
PolyBoundsOp::Make(std::move(grPaint), p.getBounds());
|
|
|
|
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;
|
|
|
|
|
2014-09-23 16:50:21 +00:00
|
|
|
for (int et = 0; et < kGrProcessorEdgeTypeCnt; ++et) {
|
2014-02-28 14:43:26 +00:00
|
|
|
SkRect rect = *iter.get();
|
|
|
|
rect.offset(x, y);
|
2014-09-23 16:50:21 +00:00
|
|
|
GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
|
2017-08-11 13:40:37 +00:00
|
|
|
std::unique_ptr<GrFragmentProcessor> fp(GrConvexPolyEffect::Make(edgeType, rect));
|
2014-09-23 16:50:21 +00:00
|
|
|
if (!fp) {
|
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;
|
2017-07-14 15:30:17 +00:00
|
|
|
grPaint.setColor4f(GrColor4f(0, 0, 0, 1.f));
|
2017-01-09 16:46:10 +00:00
|
|
|
grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
|
2016-06-23 21:07:00 +00:00
|
|
|
grPaint.addCoverageFragmentProcessor(std::move(fp));
|
2014-02-08 19:31:05 +00:00
|
|
|
|
2017-07-14 15:30:17 +00:00
|
|
|
std::unique_ptr<GrDrawOp> op = PolyBoundsOp::Make(std::move(grPaint), rect);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|