зеркало из https://github.com/mozilla/moz-skia.git
add (temporary) diagnostic code for normalize test
git-svn-id: http://skia.googlecode.com/svn/trunk@8994 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
c9f81661c1
Коммит
dc9cdf8d49
|
@ -68,7 +68,11 @@ static void test_overflow(skiatest::Reporter* reporter) {
|
|||
SkPoint pt = { bigFloat, bigFloat };
|
||||
|
||||
SkScalar length = pt.length();
|
||||
REPORTER_ASSERT(reporter, !SkScalarIsFinite(length));
|
||||
// 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));
|
||||
}
|
||||
|
||||
// this should succeed, even though we can't represent length
|
||||
REPORTER_ASSERT(reporter, pt.setLength(SK_Scalar1));
|
||||
|
|
Загрузка…
Ссылка в новой задаче