blob: c0d1f26086ec2d4191b827bf3f7646ecf2d9ff50 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 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 */
epoger@google.com1fd56dc2011-06-15 18:04:58 +00007// Unit tests for src/core/SkPoint.cpp and its header
8
9#include "SkPoint.h"
reed@google.comc7d0ea32013-03-08 16:07:54 +000010#include "SkRect.h"
epoger@google.com1fd56dc2011-06-15 18:04:58 +000011#include "Test.h"
12
reed@google.comc7d0ea32013-03-08 16:07:54 +000013static void test_casts(skiatest::Reporter* reporter) {
14 SkPoint p = { 0, 0 };
15 SkRect r = { 0, 0, 0, 0 };
16
17 const SkScalar* pPtr = SkTCast<const SkScalar*>(&p);
18 const SkScalar* rPtr = SkTCast<const SkScalar*>(&r);
19
20 REPORTER_ASSERT(reporter, p.asScalars() == pPtr);
21 REPORTER_ASSERT(reporter, r.asScalars() == rPtr);
22}
23
epoger@google.com1fd56dc2011-06-15 18:04:58 +000024// Tests SkPoint::Normalize() for this (x,y)
25static void test_Normalize(skiatest::Reporter* reporter,
26 SkScalar x, SkScalar y) {
27 SkPoint point;
28 point.set(x, y);
29 SkScalar oldLength = point.length();
30 SkScalar returned = SkPoint::Normalize(&point);
31 SkScalar newLength = point.length();
bungeman@google.comb7b5d932012-08-24 19:53:58 +000032 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
epoger@google.com1fd56dc2011-06-15 18:04:58 +000033 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(newLength, SK_Scalar1));
34}
35
reed@google.com5a5fe582013-05-03 15:59:39 +000036// Tests that SkPoint::length() and SkPoint::Length() both return
37// approximately expectedLength for this (x,y).
38static void test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y,
39 SkScalar expectedLength) {
40 SkPoint point;
41 point.set(x, y);
42 SkScalar s1 = point.length();
43 SkScalar s2 = SkPoint::Length(x, y);
44 //The following should be exactly the same, but need not be.
45 //See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=323
46 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
47 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +000048
reed@google.com5a5fe582013-05-03 15:59:39 +000049 test_Normalize(reporter, x, y);
50}
51
reed@google.com25720b42013-05-03 16:30:44 +000052// Ugh. Windows compiler can dive into other .cpp files, and sometimes
53// notices that I will generate an overflow... which is exactly the point
54// of this test!
55//
56// To avoid this warning, I need to convince the compiler that I might not
57// use that big value, hence this hacky helper function: reporter is
58// ALWAYS non-null. (shhhhhh, don't tell the compiler that).
59template <typename T> T get_value(skiatest::Reporter* reporter, T value) {
60 return reporter ? value : 0;
61}
62
reed@google.comfcc9ca02013-05-06 15:59:51 +000063// On linux gcc, 32bit, we are seeing the compiler propagate up the value
64// of SkPoint::length() as a double (which we use sometimes to avoid overflow
65// during the computation), even though the signature says float (SkScalar).
66//
67// force_as_float is meant to capture our latest technique (horrible as
68// it is) to force the value to be a float, so we can test whether it was
69// finite or not.
70static float force_as_float(skiatest::Reporter* reporter, float value) {
71 uint32_t storage;
72 memcpy(&storage, &value, 4);
73 // even the pair of memcpy calls are not sufficient, since those seem to
74 // be no-op'd, so we add a runtime tests (just like get_value) to force
75 // the compiler to give us an actual float.
halcanary96fcdcc2015-08-27 07:41:13 -070076 if (nullptr == reporter) {
reed@google.comfcc9ca02013-05-06 15:59:51 +000077 storage = ~storage;
78 }
79 memcpy(&value, &storage, 4);
80 return value;
81}
82
reed@google.com5a5fe582013-05-03 15:59:39 +000083// test that we handle very large values correctly. i.e. that we can
84// successfully normalize something whose mag overflows a float.
85static void test_overflow(skiatest::Reporter* reporter) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000086 SkScalar bigFloat = get_value(reporter, 3.4e38f);
reed@google.com25720b42013-05-03 16:30:44 +000087 SkPoint pt = { bigFloat, bigFloat };
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +000088
reed@google.com5a5fe582013-05-03 15:59:39 +000089 SkScalar length = pt.length();
reed@google.comfcc9ca02013-05-06 15:59:51 +000090 length = force_as_float(reporter, length);
91
reed@google.comdc9cdf82013-05-03 18:11:00 +000092 // expect this to be non-finite, but dump the results if not.
93 if (SkScalarIsFinite(length)) {
94 SkDebugf("length(%g, %g) == %g\n", pt.fX, pt.fY, length);
95 REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
96 }
reed@google.com5a5fe582013-05-03 15:59:39 +000097
98 // this should succeed, even though we can't represent length
99 REPORTER_ASSERT(reporter, pt.setLength(SK_Scalar1));
100
101 // now that pt is normalized, we check its length
102 length = pt.length();
103 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(length, SK_Scalar1));
104}
105
106// test that we handle very small values correctly. i.e. that we can
107// report failure if we try to normalize them.
108static void test_underflow(skiatest::Reporter* reporter) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000109 SkPoint pt = { 1.0e-37f, 1.0e-37f };
reeda8b326c2014-12-09 11:50:32 -0800110 const SkPoint empty = { 0, 0 };
reed@google.com5a5fe582013-05-03 15:59:39 +0000111
112 REPORTER_ASSERT(reporter, 0 == SkPoint::Normalize(&pt));
reeda8b326c2014-12-09 11:50:32 -0800113 REPORTER_ASSERT(reporter, pt == empty);
reed@google.com5a5fe582013-05-03 15:59:39 +0000114
115 REPORTER_ASSERT(reporter, !pt.setLength(SK_Scalar1));
reeda8b326c2014-12-09 11:50:32 -0800116 REPORTER_ASSERT(reporter, pt == empty);
reed@google.com5a5fe582013-05-03 15:59:39 +0000117}
118
commit-bot@chromium.org11e5b972013-11-08 20:14:16 +0000119DEF_TEST(Point, reporter) {
reed@google.comc7d0ea32013-03-08 16:07:54 +0000120 test_casts(reporter);
121
reed@google.com5a5fe582013-05-03 15:59:39 +0000122 static const struct {
123 SkScalar fX;
124 SkScalar fY;
125 SkScalar fLength;
126 } gRec[] = {
127 { SkIntToScalar(3), SkIntToScalar(4), SkIntToScalar(5) },
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000128 { 0.6f, 0.8f, SK_Scalar1 },
reed@google.com5a5fe582013-05-03 15:59:39 +0000129 };
skia.committer@gmail.comecc9d282013-05-04 07:01:15 +0000130
reed@google.com5a5fe582013-05-03 15:59:39 +0000131 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
132 test_length(reporter, gRec[i].fX, gRec[i].fY, gRec[i].fLength);
133 }
134
135 test_underflow(reporter);
136 test_overflow(reporter);
epoger@google.com1fd56dc2011-06-15 18:04:58 +0000137}
138
commit-bot@chromium.org11e5b972013-11-08 20:14:16 +0000139DEF_TEST(Point_setLengthFast, reporter) {
140 // Scale a (1,1) point to a bunch of different lengths,
141 // making sure the slow and fast paths are within 0.1%.
142 const float tests[] = { 1.0f, 0.0f, 1.0e-37f, 3.4e38f, 42.0f, 0.00012f };
143
144 const SkPoint kOne = {1.0f, 1.0f};
145 for (unsigned i = 0; i < SK_ARRAY_COUNT(tests); i++) {
146 SkPoint slow = kOne, fast = kOne;
147
148 slow.setLength(tests[i]);
149 fast.setLengthFast(tests[i]);
150
151 if (slow.length() < FLT_MIN && fast.length() < FLT_MIN) continue;
152
153 SkScalar ratio = slow.length() / fast.length();
154 REPORTER_ASSERT(reporter, ratio > 0.999f);
155 REPORTER_ASSERT(reporter, ratio < 1.001f);
156 }
157}