2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2011-06-15 18:04:58 +00:00
|
|
|
// Unit tests for src/core/SkPoint.cpp and its header
|
|
|
|
|
|
|
|
#include "SkPoint.h"
|
2013-03-08 16:07:54 +00:00
|
|
|
#include "SkRect.h"
|
2011-06-15 18:04:58 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
2013-03-08 16:07:54 +00:00
|
|
|
static void test_casts(skiatest::Reporter* reporter) {
|
|
|
|
SkPoint p = { 0, 0 };
|
|
|
|
SkRect r = { 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
const SkScalar* pPtr = SkTCast<const SkScalar*>(&p);
|
|
|
|
const SkScalar* rPtr = SkTCast<const SkScalar*>(&r);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, p.asScalars() == pPtr);
|
|
|
|
REPORTER_ASSERT(reporter, r.asScalars() == rPtr);
|
|
|
|
}
|
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
// Tests SkPoint::Normalize() for this (x,y)
|
|
|
|
static void test_Normalize(skiatest::Reporter* reporter,
|
|
|
|
SkScalar x, SkScalar y) {
|
|
|
|
SkPoint point;
|
|
|
|
point.set(x, y);
|
|
|
|
SkScalar oldLength = point.length();
|
|
|
|
SkScalar returned = SkPoint::Normalize(&point);
|
|
|
|
SkScalar newLength = point.length();
|
|
|
|
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(returned, oldLength));
|
|
|
|
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(newLength, SK_Scalar1));
|
|
|
|
}
|
|
|
|
|
2011-06-15 18:04:58 +00:00
|
|
|
// Tests that SkPoint::length() and SkPoint::Length() both return
|
|
|
|
// approximately expectedLength for this (x,y).
|
|
|
|
static void test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y,
|
|
|
|
SkScalar expectedLength) {
|
|
|
|
SkPoint point;
|
|
|
|
point.set(x, y);
|
|
|
|
SkScalar s1 = point.length();
|
|
|
|
SkScalar s2 = SkPoint::Length(x, y);
|
2012-08-24 19:53:58 +00:00
|
|
|
//The following should be exactly the same, but need not be.
|
2012-08-27 13:14:46 +00:00
|
|
|
//See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=323
|
2012-08-24 19:53:58 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
|
2011-06-15 18:04:58 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
|
2013-05-04 07:01:15 +00:00
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
test_Normalize(reporter, x, y);
|
2011-06-15 18:04:58 +00:00
|
|
|
}
|
|
|
|
|
2013-05-03 16:30:44 +00:00
|
|
|
// Ugh. Windows compiler can dive into other .cpp files, and sometimes
|
|
|
|
// notices that I will generate an overflow... which is exactly the point
|
|
|
|
// of this test!
|
|
|
|
//
|
|
|
|
// To avoid this warning, I need to convince the compiler that I might not
|
|
|
|
// use that big value, hence this hacky helper function: reporter is
|
|
|
|
// ALWAYS non-null. (shhhhhh, don't tell the compiler that).
|
|
|
|
template <typename T> T get_value(skiatest::Reporter* reporter, T value) {
|
|
|
|
return reporter ? value : 0;
|
|
|
|
}
|
|
|
|
|
2013-05-06 15:59:51 +00:00
|
|
|
// On linux gcc, 32bit, we are seeing the compiler propagate up the value
|
|
|
|
// of SkPoint::length() as a double (which we use sometimes to avoid overflow
|
|
|
|
// during the computation), even though the signature says float (SkScalar).
|
|
|
|
//
|
|
|
|
// force_as_float is meant to capture our latest technique (horrible as
|
|
|
|
// it is) to force the value to be a float, so we can test whether it was
|
|
|
|
// finite or not.
|
|
|
|
static float force_as_float(skiatest::Reporter* reporter, float value) {
|
|
|
|
uint32_t storage;
|
|
|
|
memcpy(&storage, &value, 4);
|
|
|
|
// even the pair of memcpy calls are not sufficient, since those seem to
|
|
|
|
// be no-op'd, so we add a runtime tests (just like get_value) to force
|
|
|
|
// the compiler to give us an actual float.
|
2015-08-27 14:41:13 +00:00
|
|
|
if (nullptr == reporter) {
|
2013-05-06 15:59:51 +00:00
|
|
|
storage = ~storage;
|
|
|
|
}
|
|
|
|
memcpy(&value, &storage, 4);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
// test that we handle very large values correctly. i.e. that we can
|
|
|
|
// successfully normalize something whose mag overflows a float.
|
|
|
|
static void test_overflow(skiatest::Reporter* reporter) {
|
2013-11-25 19:44:07 +00:00
|
|
|
SkScalar bigFloat = get_value(reporter, 3.4e38f);
|
2013-05-03 16:30:44 +00:00
|
|
|
SkPoint pt = { bigFloat, bigFloat };
|
2013-05-04 07:01:15 +00:00
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
SkScalar length = pt.length();
|
2013-05-06 15:59:51 +00:00
|
|
|
length = force_as_float(reporter, length);
|
|
|
|
|
2013-05-03 18:11:00 +00:00
|
|
|
// expect this to be non-finite, but dump the results if not.
|
|
|
|
if (SkScalarIsFinite(length)) {
|
|
|
|
SkDebugf("length(%g, %g) == %g\n", pt.fX, pt.fY, length);
|
|
|
|
REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
|
|
|
|
}
|
2013-05-03 15:59:39 +00:00
|
|
|
|
|
|
|
// this should succeed, even though we can't represent length
|
|
|
|
REPORTER_ASSERT(reporter, pt.setLength(SK_Scalar1));
|
|
|
|
|
|
|
|
// now that pt is normalized, we check its length
|
|
|
|
length = pt.length();
|
|
|
|
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(length, SK_Scalar1));
|
|
|
|
}
|
|
|
|
|
|
|
|
// test that we handle very small values correctly. i.e. that we can
|
|
|
|
// report failure if we try to normalize them.
|
|
|
|
static void test_underflow(skiatest::Reporter* reporter) {
|
2013-11-25 19:44:07 +00:00
|
|
|
SkPoint pt = { 1.0e-37f, 1.0e-37f };
|
2014-12-09 19:50:32 +00:00
|
|
|
const SkPoint empty = { 0, 0 };
|
2013-05-03 15:59:39 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, 0 == SkPoint::Normalize(&pt));
|
2014-12-09 19:50:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, pt == empty);
|
2013-05-03 15:59:39 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, !pt.setLength(SK_Scalar1));
|
2014-12-09 19:50:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, pt == empty);
|
2011-06-15 18:04:58 +00:00
|
|
|
}
|
|
|
|
|
2013-11-08 20:14:16 +00:00
|
|
|
DEF_TEST(Point, reporter) {
|
2013-03-08 16:07:54 +00:00
|
|
|
test_casts(reporter);
|
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
static const struct {
|
|
|
|
SkScalar fX;
|
|
|
|
SkScalar fY;
|
|
|
|
SkScalar fLength;
|
|
|
|
} gRec[] = {
|
|
|
|
{ SkIntToScalar(3), SkIntToScalar(4), SkIntToScalar(5) },
|
2013-11-25 19:44:07 +00:00
|
|
|
{ 0.6f, 0.8f, SK_Scalar1 },
|
2013-05-03 15:59:39 +00:00
|
|
|
};
|
2013-05-04 07:01:15 +00:00
|
|
|
|
2013-05-03 15:59:39 +00:00
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); ++i) {
|
|
|
|
test_length(reporter, gRec[i].fX, gRec[i].fY, gRec[i].fLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
test_underflow(reporter);
|
|
|
|
test_overflow(reporter);
|
2011-06-15 18:04:58 +00:00
|
|
|
}
|
|
|
|
|
2013-11-08 20:14:16 +00:00
|
|
|
DEF_TEST(Point_setLengthFast, reporter) {
|
|
|
|
// Scale a (1,1) point to a bunch of different lengths,
|
|
|
|
// making sure the slow and fast paths are within 0.1%.
|
|
|
|
const float tests[] = { 1.0f, 0.0f, 1.0e-37f, 3.4e38f, 42.0f, 0.00012f };
|
|
|
|
|
|
|
|
const SkPoint kOne = {1.0f, 1.0f};
|
|
|
|
for (unsigned i = 0; i < SK_ARRAY_COUNT(tests); i++) {
|
|
|
|
SkPoint slow = kOne, fast = kOne;
|
|
|
|
|
|
|
|
slow.setLength(tests[i]);
|
|
|
|
fast.setLengthFast(tests[i]);
|
|
|
|
|
|
|
|
if (slow.length() < FLT_MIN && fast.length() < FLT_MIN) continue;
|
|
|
|
|
|
|
|
SkScalar ratio = slow.length() / fast.length();
|
|
|
|
REPORTER_ASSERT(reporter, ratio > 0.999f);
|
|
|
|
REPORTER_ASSERT(reporter, ratio < 1.001f);
|
|
|
|
}
|
|
|
|
}
|