blob: 72b7be00396cb78f412af3f787f14f31420d152c [file] [log] [blame]
caryclark@google.com07393ca2013-04-08 11:47:37 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
Mike Kleinc0bd9f92019-04-23 12:05:21 -05007#include "src/pathops/SkPathOpsCubic.h"
8#include "src/pathops/SkPathOpsLine.h"
9#include "src/pathops/SkPathOpsQuad.h"
10#include "src/pathops/SkPathOpsRect.h"
11#include "tests/PathOpsTestCommon.h"
12#include "tests/Test.h"
caryclark@google.com07393ca2013-04-08 11:47:37 +000013
caryclarka35ab3e2016-10-20 08:32:18 -070014static const QuadPts quadTests[] = {
caryclark@google.com07393ca2013-04-08 11:47:37 +000015 {{{1, 1}, {2, 1}, {0, 2}}},
16 {{{0, 0}, {1, 1}, {3, 1}}},
17 {{{2, 0}, {1, 1}, {2, 2}}},
18 {{{4, 0}, {0, 1}, {4, 2}}},
19 {{{0, 0}, {0, 1}, {1, 1}}},
20};
21
caryclarka35ab3e2016-10-20 08:32:18 -070022static const CubicPts cubicTests[] = {
caryclark@google.com07393ca2013-04-08 11:47:37 +000023 {{{2, 0}, {3, 1}, {2, 2}, {1, 1}}},
24 {{{3, 1}, {2, 2}, {1, 1}, {2, 0}}},
25 {{{3, 0}, {2, 1}, {3, 2}, {1, 1}}},
26};
27
caryclark@google.comad65a3e2013-04-15 19:13:59 +000028static const size_t quadTests_count = SK_ARRAY_COUNT(quadTests);
29static const size_t cubicTests_count = SK_ARRAY_COUNT(cubicTests);
caryclark@google.com07393ca2013-04-08 11:47:37 +000030
caryclark54359292015-03-26 07:52:43 -070031static void setRawBounds(const SkDQuad& quad, SkDRect* rect) {
32 rect->set(quad[0]);
33 rect->add(quad[1]);
34 rect->add(quad[2]);
35}
36
37static void setRawBounds(const SkDCubic& cubic, SkDRect* rect) {
38 rect->set(cubic[0]);
39 rect->add(cubic[1]);
40 rect->add(cubic[2]);
41 rect->add(cubic[3]);
42}
43
tfarina@chromium.org78e7b4e2014-01-02 21:45:03 +000044DEF_TEST(PathOpsDRect, reporter) {
caryclark@google.com07393ca2013-04-08 11:47:37 +000045 size_t index;
46 SkDRect rect, rect2;
caryclark@google.com07393ca2013-04-08 11:47:37 +000047 for (index = 0; index < quadTests_count; ++index) {
caryclarka35ab3e2016-10-20 08:32:18 -070048 const QuadPts& q = quadTests[index];
49 SkDQuad quad;
50 quad.debugSet(q.fPts);
caryclark@google.com8d0a5242013-07-16 16:11:16 +000051 SkASSERT(ValidQuad(quad));
caryclark54359292015-03-26 07:52:43 -070052 setRawBounds(quad, &rect);
caryclark@google.com07393ca2013-04-08 11:47:37 +000053 rect2.setBounds(quad);
caryclark54359292015-03-26 07:52:43 -070054 REPORTER_ASSERT(reporter, rect.intersects(rect2));
caryclark@google.com07393ca2013-04-08 11:47:37 +000055 // FIXME: add a recursive box subdivision method to verify that tight bounds is correct
56 SkDPoint leftTop = {rect2.fLeft, rect2.fTop};
57 REPORTER_ASSERT(reporter, rect.contains(leftTop));
58 SkDPoint rightBottom = {rect2.fRight, rect2.fBottom};
59 REPORTER_ASSERT(reporter, rect.contains(rightBottom));
60 }
61 for (index = 0; index < cubicTests_count; ++index) {
caryclarka35ab3e2016-10-20 08:32:18 -070062 const CubicPts& c = cubicTests[index];
63 SkDCubic cubic;
64 cubic.debugSet(c.fPts);
caryclark@google.com8d0a5242013-07-16 16:11:16 +000065 SkASSERT(ValidCubic(cubic));
caryclark54359292015-03-26 07:52:43 -070066 setRawBounds(cubic, &rect);
caryclark@google.com07393ca2013-04-08 11:47:37 +000067 rect2.setBounds(cubic);
caryclark54359292015-03-26 07:52:43 -070068 REPORTER_ASSERT(reporter, rect.intersects(rect2));
caryclark@google.com07393ca2013-04-08 11:47:37 +000069 // FIXME: add a recursive box subdivision method to verify that tight bounds is correct
70 SkDPoint leftTop = {rect2.fLeft, rect2.fTop};
71 REPORTER_ASSERT(reporter, rect.contains(leftTop));
72 SkDPoint rightBottom = {rect2.fRight, rect2.fBottom};
73 REPORTER_ASSERT(reporter, rect.contains(rightBottom));
74 }
75}