2013-08-05 13:28:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 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/SkTypes.h"
|
2015-08-27 14:41:13 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkBitmap.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "include/core/SkRRect.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "include/effects/SkDashPathEffect.h"
|
2020-07-06 14:56:46 +00:00
|
|
|
#include "include/gpu/GrDirectContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/GrPath.h"
|
2020-04-17 20:21:37 +00:00
|
|
|
#include "src/gpu/geometry/GrStyledShape.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tests/Test.h"
|
2013-08-05 13:28:55 +00:00
|
|
|
|
2015-12-01 12:35:26 +00:00
|
|
|
#include <initializer_list>
|
|
|
|
|
2014-01-10 22:08:27 +00:00
|
|
|
static void test_drawPathEmpty(skiatest::Reporter*, SkCanvas* canvas) {
|
2013-08-05 13:28:55 +00:00
|
|
|
// Filling an empty path should not crash.
|
|
|
|
SkPaint paint;
|
2015-11-19 04:12:56 +00:00
|
|
|
SkRect emptyRect = SkRect::MakeEmpty();
|
|
|
|
canvas->drawRect(emptyRect, paint);
|
2013-08-05 13:28:55 +00:00
|
|
|
canvas->drawPath(SkPath(), paint);
|
2015-11-19 04:12:56 +00:00
|
|
|
canvas->drawOval(emptyRect, paint);
|
|
|
|
canvas->drawRect(emptyRect, paint);
|
|
|
|
canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint);
|
2013-08-05 13:28:55 +00:00
|
|
|
|
|
|
|
// Stroking an empty path should not crash.
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
paint.setColor(SK_ColorGRAY);
|
|
|
|
paint.setStrokeWidth(SkIntToScalar(20));
|
|
|
|
paint.setStrokeJoin(SkPaint::kRound_Join);
|
2015-11-19 04:12:56 +00:00
|
|
|
canvas->drawRect(emptyRect, paint);
|
2013-08-05 13:28:55 +00:00
|
|
|
canvas->drawPath(SkPath(), paint);
|
2015-11-19 04:12:56 +00:00
|
|
|
canvas->drawOval(emptyRect, paint);
|
|
|
|
canvas->drawRect(emptyRect, paint);
|
|
|
|
canvas->drawRRect(SkRRect::MakeRect(emptyRect), paint);
|
2013-08-05 13:28:55 +00:00
|
|
|
}
|
|
|
|
|
2015-11-19 04:12:56 +00:00
|
|
|
static void fill_and_stroke(SkCanvas* canvas, const SkPath& p1, const SkPath& p2,
|
2016-03-18 18:22:57 +00:00
|
|
|
sk_sp<SkPathEffect> effect) {
|
2015-11-19 04:12:56 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setPathEffect(effect);
|
|
|
|
|
|
|
|
canvas->drawPath(p1, paint);
|
|
|
|
canvas->drawPath(p2, paint);
|
|
|
|
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
canvas->drawPath(p1, paint);
|
|
|
|
canvas->drawPath(p2, paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_drawSameRectOvals(skiatest::Reporter*, SkCanvas* canvas) {
|
|
|
|
// Drawing ovals with similar bounds but different points order should not crash.
|
|
|
|
|
|
|
|
SkPath oval1, oval2;
|
|
|
|
const SkRect rect = SkRect::MakeWH(100, 50);
|
2019-11-22 18:34:02 +00:00
|
|
|
oval1.addOval(rect, SkPathDirection::kCW);
|
|
|
|
oval2.addOval(rect, SkPathDirection::kCCW);
|
2015-11-19 04:12:56 +00:00
|
|
|
|
|
|
|
fill_and_stroke(canvas, oval1, oval2, nullptr);
|
|
|
|
|
|
|
|
const SkScalar intervals[] = { 1, 1 };
|
2016-03-18 18:22:57 +00:00
|
|
|
fill_and_stroke(canvas, oval1, oval2, SkDashPathEffect::Make(intervals, 2, 0));
|
2015-11-19 04:12:56 +00:00
|
|
|
}
|
2015-11-18 22:07:13 +00:00
|
|
|
|
2016-04-06 21:02:39 +00:00
|
|
|
DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GpuDrawPath, reporter, ctxInfo) {
|
2015-12-01 12:35:26 +00:00
|
|
|
for (auto& test_func : { &test_drawPathEmpty, &test_drawSameRectOvals }) {
|
2018-02-03 01:32:49 +00:00
|
|
|
for (auto& sampleCount : {1, 4, 16}) {
|
2014-09-18 13:09:44 +00:00
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(255, 255);
|
2016-03-24 01:59:25 +00:00
|
|
|
auto surface(
|
2020-07-06 14:56:46 +00:00
|
|
|
SkSurface::MakeRenderTarget(ctxInfo.directContext(), SkBudgeted::kNo, info,
|
2016-05-11 13:33:06 +00:00
|
|
|
sampleCount, nullptr));
|
2015-11-19 17:37:02 +00:00
|
|
|
if (!surface) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-01 12:35:26 +00:00
|
|
|
test_func(reporter, surface->getCanvas());
|
2013-08-05 13:28:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-25 18:02:26 +00:00
|
|
|
DEF_GPUTEST_FOR_ALL_CONTEXTS(GrDrawCollapsedPath, reporter, ctxInfo) {
|
|
|
|
// From https://bugs.fuchsia.dev/p/fuchsia/issues/detail?id=37330, it's possible for a convex
|
|
|
|
// path to be accepted by AAConvexPathRenderer, then be transformed to something without a
|
|
|
|
// computable first direction by a perspective matrix.
|
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
|
2020-07-06 14:56:46 +00:00
|
|
|
auto surface(SkSurface::MakeRenderTarget(ctxInfo.directContext(), SkBudgeted::kNo, info));
|
2019-09-25 18:02:26 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
|
|
|
|
SkPath path;
|
|
|
|
path.moveTo(0, 0);
|
|
|
|
path.lineTo(50, 0);
|
|
|
|
path.lineTo(0, 50);
|
|
|
|
path.close();
|
|
|
|
|
|
|
|
SkMatrix m;
|
|
|
|
m.setAll( 0.966006875f , -0.125156224f , 72.0899811f,
|
|
|
|
-0.00885376986f , -0.112347461f , 64.7121124f,
|
|
|
|
-8.94321693e-06f, -0.00173384184f, 0.998692870f);
|
|
|
|
surface->getCanvas()->setMatrix(m);
|
|
|
|
surface->getCanvas()->drawPath(path, paint);
|
2020-05-14 19:45:44 +00:00
|
|
|
surface->flushAndSubmit();
|
2019-09-25 18:02:26 +00:00
|
|
|
}
|
|
|
|
|
2017-11-15 20:48:03 +00:00
|
|
|
DEF_GPUTEST(GrPathKeys, reporter, /* options */) {
|
2016-09-15 20:55:33 +00:00
|
|
|
SkPaint strokePaint;
|
|
|
|
strokePaint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
strokePaint.setStrokeWidth(10.f);
|
|
|
|
GrStyle styles[] = {
|
|
|
|
GrStyle::SimpleFill(),
|
|
|
|
GrStyle::SimpleHairline(),
|
|
|
|
GrStyle(strokePaint)
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const GrStyle& style : styles) {
|
|
|
|
// Keys should not ignore conic weights.
|
|
|
|
SkPath path1, path2;
|
|
|
|
SkPoint p0 = SkPoint::Make(100, 0);
|
|
|
|
SkPoint p1 = SkPoint::Make(100, 100);
|
|
|
|
|
|
|
|
path1.conicTo(p0, p1, .5f);
|
|
|
|
path2.conicTo(p0, p1, .7f);
|
|
|
|
|
|
|
|
GrUniqueKey key1, key2;
|
2016-09-23 19:09:16 +00:00
|
|
|
// We expect these small paths to be keyed based on their data.
|
|
|
|
bool isVolatile;
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile);
|
2016-09-15 20:55:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, !isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, key1.isValid());
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path2, GrStyle::SimpleFill()), &key2, &isVolatile);
|
2016-09-15 20:55:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, !isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, key1.isValid());
|
|
|
|
REPORTER_ASSERT(reporter, key1 != key2);
|
2016-09-23 19:09:16 +00:00
|
|
|
{
|
|
|
|
GrUniqueKey tempKey;
|
|
|
|
path1.setIsVolatile(true);
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path1, style), &key1, &isVolatile);
|
2016-09-23 19:09:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, !tempKey.isValid());
|
|
|
|
}
|
2016-09-15 20:55:33 +00:00
|
|
|
|
2020-04-17 20:21:37 +00:00
|
|
|
// Ensure that recreating the GrStyledShape doesn't change the key.
|
2016-09-15 20:55:33 +00:00
|
|
|
{
|
|
|
|
GrUniqueKey tempKey;
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path2, GrStyle::SimpleFill()), &tempKey, &isVolatile);
|
2016-09-23 19:09:16 +00:00
|
|
|
REPORTER_ASSERT(reporter, key2 == tempKey);
|
2016-09-15 20:55:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try a large path that is too big to be keyed off its data.
|
|
|
|
SkPath path3;
|
|
|
|
SkPath path4;
|
|
|
|
for (int i = 0; i < 1000; ++i) {
|
|
|
|
SkScalar s = SkIntToScalar(i);
|
|
|
|
path3.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.5f + s / 2000.f);
|
|
|
|
path4.conicTo(s, 3.f * s / 4, s + 1.f, s, 0.3f + s / 2000.f);
|
|
|
|
}
|
|
|
|
|
|
|
|
GrUniqueKey key3, key4;
|
|
|
|
// These aren't marked volatile and so should have keys
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path3, style), &key3, &isVolatile);
|
2016-09-15 20:55:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, !isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, key3.isValid());
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path4, style), &key4, &isVolatile);
|
2016-09-15 20:55:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, !isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, key4.isValid());
|
|
|
|
REPORTER_ASSERT(reporter, key3 != key4);
|
|
|
|
|
|
|
|
{
|
|
|
|
GrUniqueKey tempKey;
|
|
|
|
path3.setIsVolatile(true);
|
2020-04-17 20:21:37 +00:00
|
|
|
GrPath::ComputeKey(GrStyledShape(path3, style), &key1, &isVolatile);
|
2016-09-15 20:55:33 +00:00
|
|
|
REPORTER_ASSERT(reporter, isVolatile);
|
|
|
|
REPORTER_ASSERT(reporter, !tempKey.isValid());
|
|
|
|
}
|
|
|
|
}
|
2015-11-19 15:28:50 +00:00
|
|
|
}
|