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-02-07 17:48:40 +00:00
|
|
|
#include "Test.h"
|
2012-11-08 22:36:19 +00:00
|
|
|
#include "SkRandom.h"
|
2011-02-07 17:48:40 +00:00
|
|
|
#include "SkRect.h"
|
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
#ifdef SK_SCALAR_IS_FLOAT
|
2011-02-07 19:08:59 +00:00
|
|
|
static float make_zero() {
|
|
|
|
return sk_float_sin(0);
|
|
|
|
}
|
2011-02-09 02:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-08 22:36:19 +00:00
|
|
|
static void test_center(skiatest::Reporter* reporter) {
|
|
|
|
static const struct {
|
|
|
|
SkIRect fRect;
|
|
|
|
SkIPoint fCenter;
|
|
|
|
} data[] = {
|
|
|
|
{ { 0, 0, 0, 0 }, { 0, 0 } },
|
|
|
|
{ { 0, 0, 1, 1 }, { 0, 0 } },
|
|
|
|
{ { -1, -1, 0, 0 }, { -1, -1 } },
|
|
|
|
{ { 0, 0, 10, 7 }, { 5, 3 } },
|
|
|
|
{ { 0, 0, 11, 6 }, { 5, 3 } },
|
|
|
|
};
|
|
|
|
for (size_t index = 0; index < SK_ARRAY_COUNT(data); ++index) {
|
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
data[index].fRect.centerX() == data[index].fCenter.x());
|
|
|
|
REPORTER_ASSERT(reporter,
|
|
|
|
data[index].fRect.centerY() == data[index].fCenter.y());
|
|
|
|
}
|
|
|
|
|
|
|
|
SkRandom rand;
|
|
|
|
for (int i = 0; i < 10000; ++i) {
|
|
|
|
SkIRect r;
|
2012-11-09 02:01:24 +00:00
|
|
|
|
2012-11-08 22:36:19 +00:00
|
|
|
r.set(rand.nextS() >> 2, rand.nextS() >> 2,
|
|
|
|
rand.nextS() >> 2, rand.nextS() >> 2);
|
|
|
|
int cx = r.centerX();
|
|
|
|
int cy = r.centerY();
|
2012-12-12 15:58:25 +00:00
|
|
|
REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
|
|
|
|
REPORTER_ASSERT(reporter, ((r.top() + r.bottom()) >> 1) == cy);
|
2012-11-08 22:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
static void check_invalid(skiatest::Reporter* reporter,
|
|
|
|
SkScalar l, SkScalar t, SkScalar r, SkScalar b) {
|
|
|
|
SkRect rect;
|
|
|
|
rect.set(l, t, r, b);
|
2011-12-06 18:56:37 +00:00
|
|
|
REPORTER_ASSERT(reporter, !rect.isFinite());
|
2011-02-09 02:24:26 +00:00
|
|
|
}
|
2011-02-07 19:08:59 +00:00
|
|
|
|
2011-12-06 18:56:37 +00:00
|
|
|
// Tests that isFinite() will reject any rect with +/-inf values
|
2011-02-07 17:48:40 +00:00
|
|
|
// as one of its coordinates.
|
|
|
|
static void TestInfRect(skiatest::Reporter* reporter) {
|
2011-02-09 02:24:26 +00:00
|
|
|
#ifdef SK_SCALAR_IS_FLOAT
|
2012-05-16 13:35:36 +00:00
|
|
|
float inf = 1 / make_zero(); // infinity
|
|
|
|
float nan = inf * 0;
|
|
|
|
SkASSERT(!(nan == nan));
|
2011-02-09 02:24:26 +00:00
|
|
|
#else
|
2012-05-16 13:35:36 +00:00
|
|
|
SkFixed inf = SK_FixedNaN;
|
|
|
|
SkFixed nan = SK_FixedNaN;
|
2011-02-09 02:24:26 +00:00
|
|
|
#endif
|
|
|
|
SkScalar small = SkIntToScalar(10);
|
|
|
|
SkScalar big = SkIntToScalar(100);
|
|
|
|
|
2012-05-16 13:35:36 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkRect::MakeEmpty().isFinite());
|
|
|
|
|
2011-02-09 02:24:26 +00:00
|
|
|
SkRect rect = SkRect::MakeXYWH(small, small, big, big);
|
2011-12-06 18:56:37 +00:00
|
|
|
REPORTER_ASSERT(reporter, rect.isFinite());
|
2011-02-07 17:48:40 +00:00
|
|
|
|
2012-05-16 13:35:36 +00:00
|
|
|
const SkScalar invalid[] = { nan, inf, -inf };
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(invalid); ++i) {
|
|
|
|
check_invalid(reporter, small, small, big, invalid[i]);
|
|
|
|
check_invalid(reporter, small, small, invalid[i], big);
|
|
|
|
check_invalid(reporter, small, invalid[i], big, big);
|
|
|
|
check_invalid(reporter, invalid[i], small, big, big);
|
|
|
|
}
|
2012-11-09 02:01:24 +00:00
|
|
|
|
2012-11-08 22:36:19 +00:00
|
|
|
test_center(reporter);
|
2011-02-07 17:48:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// need tests for SkStrSearch
|
|
|
|
|
|
|
|
#include "TestClassDef.h"
|
|
|
|
DEFINE_TESTCLASS("InfRect", InfRectTestClass, TestInfRect)
|